Week 3 Flashcards

Covers content taught in Week 3 (25 cards)

1
Q

What is a linear web structure?

A

A structure where users navigate through content in a fixed sequence, like steps or chapters.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a tutorial web structure and its benefit?

A

It allows flexible navigation between concept, lesson, and review pages; ideal for task-oriented or educational content.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What type of website suits a web structure?

A

Small websites with limited pages, where users can move freely between pages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the benefit of a hierarchical structure in web design?

A

It’s great for large content collections, enabling both section-based and linear navigation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does a cluster structure work?

A

Each topic is like an island; pages in each cluster link to each other, with clear navigation to main areas.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What kind of websites use a catalogue structure?

A

Online shopping platforms, allowing browsing, adding to cart, and checking out.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the first step in developing a website?

A

Define the website’s goals and purpose.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why is wireframing important in web design?

A

It visually plans layout, flow, and functionality, addressing usability early and reducing costly changes later.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the goal of web accessibility?

A

To ensure all users, especially those with disabilities, can access and interact with websites.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What organization created WCAG standards?

A

The W3C’s Web Accessibility Initiative (WAI).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Name the three conformance levels of WCAG.

A

Level A, Level AA (UK legal requirement), and Level AAA.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the four WCAG principles?

A

Perceivable, Operable, Understandable, Robust.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What UK law enforces accessibility?

A

The Equality Act 2010 and the Public Sector Accessibility Regulations 2018.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Name a business advantage of accessibility.

A

Improved SEO, broader customer reach, legal compliance, and better UX.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is character encoding?

A

A system for converting characters into numbers so computers can process them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Why is UTF-8 preferred in web development?

A

It supports all Unicode characters and is compatible with ASCII.

17
Q

How do you specify UTF-8 in HTML?

A

<meta></meta>

in the <head> section.

18
Q

What does <!DOCTYPE html> do?

A

Declares the document uses HTML5.

19
Q

What’s the difference between block-level and inline elements?

A

Block-level elements create sections; inline elements flow within text.

20
Q

Give an example of a self-closing tag.

A

<img></img>, <br></br>, or <input></input>.

21
Q

What is the main role of HTML?

A

Provides structure and content for web pages.

22
Q

What does CSS do?

A

Styles the layout, colors, and fonts of a web page.

23
Q

What is JavaScript used for?

A

Adds interactivity and dynamic behavior to web pages.

24
Q

What is the DOM?

A

The Document Object Model, a tree structure representing HTML that JavaScript can manipulate.

25
What is the root node of the DOM tree?
The document node, which contains the element.