was-flashcards v2

1
Q

What exactly is ARIA?

A

ARIA (Accessible Rich Internet Application) is the acronym for Accessible Rich Internet Application. In other words: ARIA has no procedural logic or interactivity on its own. To create a interactive widget, you need to use JavaScript to give the content functionality, and you use ARIA to label things appropriately with names, roles, states, properties, and relationships. ARIA is essentially an API for communicating this information to screen readers.

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

What can ARIA do?

A

labels or names for items (e.g. using aria-label or aria-labelledby or similar) roles, role=”navigation”, role=”main” etc. states of dynamic/interactive components (e.g. aria-selected=”true”, aria-expanded=”true”, aria-hidden=”true”) properties of items (e.g. aria-haspopup=”true”) relationships between items (e.g. aria-owns, aria-controls, both of which describe a kind of parent-child relationship where one item owns or controls another) live announcements in real-time that are passed on to screen readers

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

True or False If there is an aria-labelledby attribute, the text it refers to will override all other name and label methods.

A

True

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

In practice, screen reader support for aria-label and aria-labelledby is best on which elements?

A

Focusable elements (<a>, ````, etc.). Support is not as good on non-focusable elements (<p>, </p><div>, <span>, <h1>, etc.).</h1></span>`` Elements with semantic meaning, as opposed to the elements that do not have semantic meaning (like <div> and <span>).</span> Application regions (role=”application”). But be very careful with application regions, because they disable most of the screen reader’s regular keyboard shortcuts. on elements inside an application region (e.g. <div>)</div></div></div></a>

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

What landmark regions do you know? What native HTML Landmarks?

A

Available landmark regions include: application banner complementary contentinfo form main navigation search HTML 5 defines landmarks as well, with such tags as: (equivalent to role="banner") (equivalent to role=”navigation”) (equivalent to role="main") (equivalent to role=”complementary”) (equivalent to role="contentinfo")````````

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

What are the most important ARIA Roles?

A

alert alertdialog application dialog group log marquee menu menubar menuitem menuitemcheckbox menuitemradio progressbar separator slider spinbutton status tab tablist tabpanel timer toolbar tooltip tree treegrid treeitem

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

pseudo-HTML roles

A

button checkbox columnheader combobox contentinfo form grid gridcell heading img link listbox listitem option radio radiogroup row rowgroup rowheader scrollbar textbox

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

All of the following are ways to communicate the names of elements, EXCEPT: A. aria-labelledby B. C. role=”name” D. aria-label

A

C. role=”name”

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

True or False: aria-label and aria-labelledby consistently work for labelling non-semantic elements such as <div> and <span>.</span></div>

A

false

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

The purpose of ARIA roles is to: A. Provide the name of the element. B. Define what the element is. C. Identify the state of the element. D. None of the above.

A

B. Define what the element is.

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

Which type of ARIA roles are used to convey the layout of a web page? A. Landmark roles B. Abstract roles C. Pseudo HTML roles. D. Widget roles

A

A. Landmark roles

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

True or False: It is best to use actual HTML elements instead of pseudo HTML roles so developers don’t always have to create functionality for elements by using JavaScript.

A

-true

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

True or False: Assigning role=”application” to a region disables most screen reader keystrokes within the region to allow developers to create custom keystrokes.

A

True

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

Which role should be assigned within an application region to give screen readers access to regular text in the region? A. Presentation role B. Main role C. Note role D. Document role

A

D. Document role

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

ARIA attributes like aria-expanded, aria-checked, and aria-busy convey what information to screen reader users? A. The names of elements. B. The states of elements. C. The roles of elements. D. None of the above.

A

B. The states of elements.

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

Which ARIA attribute is used to provide additional information about an element? A. aria-labelledby B. aria-describedby C. role=”description” D. aria-label

A

B. aria-describedby

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

True or False: The difference between aria-live=”assertive” and aria-live=”polite” is that aria-live=”assertive” waits for a screen reader to finish its current statement before announcing new content. A. True B. False

A

False

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

True or False: ARIA is a programming language that communicates information like names, roles, and values to screen readers.

A

False

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

True or False: ARIA was invented to increase screen reader accessibility, especially for interactive scripts.

A

True

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

There are 82 ARIA roles. Each role falls into a category. Do you know these categories?

A

Abstract (don’t use these), Widget, Document structure, Landmark, Live region, Window

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

What defines WAI ARIA?

A

It defines attributes that can be added to standard HTML to define the name, role and values (Properties and states) of elements, especially for custom widgets.

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

What are characteristics of aria-label? A: Invisible B: Related to the ID of another element C: Contains a string D: Does not allow the text to be clicked E: Defines a new name for the element, which usually comes from its content F: A,C,D,E

A

F: A,C,D,E A: Invisible C: Contains a string D: Does not allow the text to be clicked E: Defines a new name for the element, which usually comes from its content

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

What are characteristics of aria-labelledby? A: Defines a new name for the element, which usually comes from its content B: Related to the ID of another element C: Can relate multiple ids from different elements D: The related texts are normally visible in the page E: Replace the element name presented to assistive technologies that usually comes from its content F: B,C,D,E

A

F: B,C,D,E B: Related to the ID of another element C: Can relate multiple ids from different elements D: The related texts are normally visible in the page E: Replace the element name presented to assistive technologies that usually comes from its content

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

What are characteristics of aria-describedby? A: Relates the id of another element. B: Provide additional information to the element C: Invisible D: A, B

A

A: Relates the id of another element. B: Provide additional information to the element

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

True or Fales: A button can get the role “heading” for example: Für Screenreader ist das jetzt eine Überschrift im Button Tag steht role=”heading”. Aus irgendwelchen Gründen wird das oben nicht angezeigt

A

false A button is a component that allows interaction. A heading, on the other hand, is a structuring element that does not allow interaction in the browser. Therefore, a button must not be given the heading role.

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

A button should also be marked as a heading (e.g. in an accordion), which construct is correct? A:

Für Screenreader ist das jetzt eine Überschrift
B: <h2>Für Screenreader ist das eine Schaltfläche in einer Überschrift```</h2>`
A

B: <h2>Für Screenreader ist das eine Schaltfläche in einer Überschrift```</h2>`

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

Are A and B an allowable nesting (Verschachtelung) of roles? A: a link in a button: <span>```</span>` B: a button in a button element: ``<div>`Wie soll das semantisch übersetzt werden?</div>` Hinweis: Endtag von div und span wurden weggelassen, da sonst nicht sichtbar

A

No, A and B are not allowed.

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

Look at the example. Is the button enabled for screenreaders? Yes or no? Ist das im Screenreader deaktiviert oder nicht?

A

No the button is disabled for screenreader The HTML attribute “disabled” has priority over the ARIA attribute “disabled=”false”

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

True or false: If an HTML attribute and an ARIA attribute have the same semantics, then the HTML attribute takes precedence (Vorrang) over the ARIA attribute.

A

True

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

What takes precedence when assigning a role with the role attribute? The implicit, native value (HTML standard) or the ARIA role? A: the ARIA Role B: the implicit value

A

A: the ARIA Role Adding an ARIA role overrides the native role semantics in the accessibility tree for example <h1>text< /h1> h1 will no longer appear in the list of headings for screen readers </h1>

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

What takes precedence when an HTML attribute and an ARIA attribute have the same semantics? A: the ARIA Attribut B: the HTML Attribut

A

B: the HTML Attribut overrides the ARIA attribut Example: Ist das im Screenreader deaktiviert oder nicht? For Screenreader the button would be disabled. Wenn ein HTML- und ein ARIA-Attribut die gleiche Semantik haben, dann hat das HTML-Attribut Vorrang vor dem ARIA-Attribut. Das disabled-Attribut ist entscheidend. Der Button wird eingegraut und ist weder per Maus noch per Tastatur aktivierbar. Für Screenreader ist das Element deaktiviert. Das ARIA-Attribut sagt aber das Gegenteil, nämlich dass das Element nicht deaktiviert ist. In solchen Fällen ist auf das ARIA-Attribut zu verzichten.

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

What is ARIA not?

A

ARIA does not provide functionality, but enriches elements with information. If a component on a web page has been semantically enriched with ARIA, then it must be made usable with JavaScript and styled with CSS

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

One ARIA Rules say: Do not change native semantics, unless you really have to. What is the correct code if the developer wants to build a heading that’s a tab. A: <h2>heading tab</h2> B: <div><h2>heading tab</h2></div>

A

B: <div><h2>heading tab</h2></div>

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

One Aria rule say that all interactive elements must have an accessible name. Which code is wrong (should be 2)? A: user name B:user name ```` C: user name D:user name E: user name `<div></div> ` Hinweis: Es wurden Punkte gesetzt vor dem Endtag damit es sichtbar ist

A

A and E A: user name A is wrong because the input type=text has a visible label ‘user name’ , but no accessible name E: is wrong because a div element regardless of what role is assigned is not a HTML labelable element.user name <div></div>

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

Why does the Web Accessibility Initiative (WAI) of the W3C created WAI-ARIA?

A

They created WAI-ARIA to increase the accessibility of content – dynamic content in particular – for assistive technology users, such as screen reader users.

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

Name one goal of WAI-ARIA

A

One of the goals of WAI-ARIA is to make web applications behave more like software components

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

What SHOULD be used if the label text is visible on screen?

A

If the label text is visible on screen, authors SHOULD use aria-labelledby and SHOULD NOT use aria-label. Note: You type the id of another element with aria-labelledby. You don’t type the label text itself.

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

For which elements is aria-label support the best?

A

on focusable elements (<a>, ````, etc.),</a> on elements inside an application region (e.g. <div>)</div>

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

Normally you would use HTML <h1>-<h6> for heading How can you ensure accessible for visual heading in a <div>, <span>, <p> that cant be turned into an html heading?</p></span></div></h6></h1>

A

Use the aria-level attribute: <span> This is a heading 2, change the number to correct heading level.</span>

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

For Forms: How can you associate error messages with their corresponding input?

A

Use aria-describedby to associate error messages with their corresponding inputs. It is presented to the screen reader separately from the accessible name (label) and doesn’t override it like the aria-label or aria-labelledby.

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

How should informative text within the element be referenced?

A

All informative elements inside elements MUST be referenced in the alternative text of the element, or in a long description. All informative text within the element should be referenced via aria-labelledby.````````

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

Why SHOULD SVG images include a base background color behind the important parts of the image, at a minimum?

A

SVG images will retain their colors when the user switches into Windows High Contrast Mode.

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

Which element should be used to animate svg images?

A

SVG animations SHOULD use JavaScript, rather than the element.

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

What are the SVG benefits?

A

Lightweight Compatible across browsers Can manipulate with CSS

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

What are SVGs?

A

Vector based graphics defined in XML format They can be interactive and dynamic

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

How can you make svgs accessibile?

A

role=img alt-text aria-labelledby aria-label

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

Inline SVGs are images that are embedded directly in HTML code. True or False?

A

True

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

How can you provide a long description for complex SVG images?

A

A short Alt-Text + Long description

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

How can you provide a long description for SVG only for Screenreader Users

A

Use the description attribute on the svg element (only for Screenreader Users and must be programmaticly associated with aria-labelledby)

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

You can embed SVGs via iframe or object element. True or False?

A

False should embed - as SVG image source - inline SVG within the HTML

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

What should be done to an <img>element to increase screen reader compatibility when an SVG is used as its source? A. It should be assigned role=”img”. B. It should be assigned role=”region”. C. It should be assigned role=”presentation”. D. Nothing should be done to the `<img>` element.

A

A. It should be assigned role=”img”.

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

Text in SVG images retains its crispness and legibility when magnified. True or False?

A

True

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

Which of the following ways to incorporate SVGs are considered bad for accessibility? A. B. C. <img>D. E. All of the above are accessible F. Both A and D````

A

F. Both A and D

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

What is the best way to link the in an so that screen readers will recognize it as the alternative text?```` A. aria-label B. aria-describedby C. aria-live D. aria-labelledby

A

D. aria-labelledby

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

True or False: Interactive SVG objects must be fully keyboard accessible.

A

True

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

For which elements can users customize colors with accessibility utilities like Windows High Contrast Mode? A) SVGs B) Icon Fonts

A

B) Icon Fonts

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

Icons retain their original color(s) when font and background colors are changed in user preferences. True or False?

A

False

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

Why should role=”img” be assigned to informative and actionable icon fonts? A. It should be assigned so that screen readers will ignore icon fonts. B. It should be assigned so that icon fonts receive visual focus. C. It should be assigned so that screen readers will recognize icon fonts as an images. D. Icon fonts aren’t images, so they don’t need to be assigned the role=”img”.

A

C. It should be assigned so that screen readers will recognize icon fonts as an images.

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

When assigning alternative text to actionable icon fonts (buttons or links), which technique is most effective? A. Add aria-label to the button or link B. Add hidden text within the button or link using CSS clip assigned to the surrounding span element C. Add text to an alt attribute in the surrounding span element.

A

A. Add aria-label to the button or link

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

Which of the following methods is recommended for decorative or redundant icon fonts? A. Decorative or redundant icon fonts should be described using aria-label. B. Decorative or redundant icon fonts should be assigned role=”img”. C. Decorative or redundant icon fonts should be assigned an empty, or null, alt attribute. D. Decorative or redundant icon fonts should be set to aria-hidden=”true”.

A

D. Decorative or redundant icon fonts should be set to aria-hidden=”true”.

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

True or False: Adding text within a element or in an alt attribute on the element are both ways of adding alternative text to elements.````

A

False

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

What must be done to the element if it is used to present an image? A. It must be assigned ARIA role=”presentation”. B. It must be assigned ARIA role=”img”. C. Nothing needs to be done to the element. D. It must have an alt attribute.

A

B. It must be assigned ARIA role=”img”.

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

True or false: If a element does not specify the background color, when a user enters into Windows High Contrast Mode, the background color of the image will change along with the color of the web page as a whole.

A

True

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

Which of the following is NOT a way of providing alternative text for simple elements? A. Using the aria-label attribute on the element. B. Using the alt attribute on the element. C. Providing a description within the element and referencing it using the aria-labelledby attribute.````

A

B. Using the alt attribute on the element.

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

True or false: To make a element keyboard focusable, use tabindex="1" on the element.````

A

False

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

True or false: Alternative text for and elements can be provided using the alt attribute.````

A

False

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

True or false: Providing documents in HTML format is preferred over non-HTML documents because of the accessibility features available in HTML.

A

True

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

Which of the following is true about audio descriptions? A. Audio descriptions describe important visual information through synchronized captions. B. Audio descriptions are not required if there is no audio content. C. Audio descriptions describe important visual information that is not conveyed through a video’s audio track. D. Audio descriptions describe important visual information through a transcript.

A

C. Audio descriptions describe important visual information that is not conveyed through a video’s audio track.

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

People who are deafblind access video and audio through: A. Transcripts B. Captions C. Audio Description D. None of the above

A

A. Transcripts

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

True or false: A PDF document must be untagged in order for screen reader users to access the document.

A

False

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

True or false: Using the accessibility API for Silverlight and Flash makes them accessible across all screen readers.

A

False

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

The Web Content Accessibility Guidelines (WCAG) Level AA requires that captions be provided for: A. Prerecorded multimedia (video plus audio) B. Live multimedia (video plus audio) C. Prerecorded video-only D. A and B E. All of the above

A

A. Prerecorded multimedia (video plus audio) B. Live multimedia (video plus audio)

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

Captions MUST include all of the following EXCEPT: A. Dialog B. Important background sounds C. Important visual cues D. The identity of the individual speaking

A

C. Important visual cues

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

All of the following are best practices for captions EXCEPT: A. Caption should not exceed three lines on the screen at one time B. Captions should be uppercase C. The default font size for captions should be at least 22pt D. The last caption frame should be removed from the screen during long silent intervals

A

Captions should be uppercase

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

True or false: Users MUST be able to customize the font face, size, and color of captions.

A

False

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

True or false: The advantage of advanced caption file formats over basic file formats is that advanced formats support greater flexibility in styling captions to meet user needs.

A

True

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

Who are the target audiance for transcripts?

A

So, when composing transcripts, the target audience should be people who are deafblind.

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

The Web Content Accessibility Guidelines (WCAG) Level AA requires that transcripts be provided for: Prerecorded multimedia (video plus audio) B. Live multimedia (video plus audio) C. Prerecorded audio-only D. A and C

A

C. Prerecorded audio-only

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

True or false: Transcripts are the only way people who are deafblind can access multimedia (audio and video) content.

A

True

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

Transcripts MUST include all of the following EXCEPT: Dialog B. The lyrics to the complete musical soundtrack C. The identity of the individual speaking D. Important background sounds

A

B. The lyrics to the complete musical soundtrack

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

True or false: Transcripts must be provided on the same page as their corresponding media file.

A

False

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

The benefits of interactive transcripts include: A. The ability to search and navigate videos by selecting text in the transcript B. Increased accessibility for people with low vision C. The ability to provide captions in multiple languages D. Greater clarity for people with vestibular disorders

A

A. The ability to search and navigate videos by selecting text in the transcript

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

True or False: Prerecorded multimedia (video plus audio) MUST include audio descriptions.

A

True

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

What MUST be include in prerecorded video-only content? A: audio descriptions OR a text transcript. B: Only audio description AND text transcipt

A

A: audio descriptions OR a text transcript.

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

True or False: Audio descriptions MUST be provided for live multimedia (audio plus video) content.

A

False: IT MAY be provided

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

Who is the target group for audio description?

A

The target audience for audio descriptions is people who can hear but who cannot see.

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

The Web Content Accessibility Guidelines (WCAG) Level AA requires that audio descriptions be provided for: A. Prerecorded multimedia (video plus audio) B. Prerecorded audio-only C. Prerecorded video-only (when there is no transcript) D. A and B E. A and C

A

E. A and C

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

Audio descriptions benefit which of the following user categories: A. Deaf users and Deaf-blind users B. Low-vision users and blind users C. Users with mobility disabilities D. Blind users only

A

B. Low-vision users and blind users

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

All of the following are best practices for recording audio descriptions EXCEPT: A. Important actions that cannot be identified by sound should be described. B. Settings should be described, but not in overwhelming detail. C. Background sounds with a source not obvious to a sighted viewer should be described. D. New speakers in a scene should be identified.

A

C. Background sounds with a source not obvious to a sighted viewer should be described.

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

True or false: Extended audio descriptions are useful when the audio track does not provide sufficient gaps for the audio description narrator to adequately describe what is happening on the screen.

A

True

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

True or false: When an audio description track is available for a movie or video, it should be the default audio track because it enhances the viewing experience for all users.

A

False

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

True or False: To meet WCAG standards, the audio description track MUST be available in the same video file as the regular audio track.

A

False

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

To meet WCAG standards, the audio description track MUST be available in the same video file as the regular audio track. A. Prerecorded multimedia(video plus audio) B. Prerecorded audio-only C. Prerecorded video-only D. None of the above, sign language interpretation is a Level AAA requirement

A

D. None of the above, sign language interpretation is a Level AAA requirement

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

True or false: Sign language interpretation is helpful for deaf people who are more fluent in sign language than written language.

A

True

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

The simplest way to provide sign language interpretation for a live event such as a press conference is: A. Via Picture in Picture (PiP), in the corner of the video B. In a separate, synchronized video C. By including the interpreter in the same video frame as the speaker D. By ensuring the speaker signs as they speak

A

C. By including the interpreter in the same video frame as the speaker

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

True or false: HTML 5 video players have made the need for custom plugins to view online video practically obsolete.

A

True

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

All of the following are accessibility considerations for media players, EXCEPT: A. Tab order must be logical. B. Focus must be managed logically. C. Visual focus indicator color and shape must be customizable. D. Instructions should be provided for unusual keyboard interactions.

A

C. Visual focus indicator color and shape must be customizable.

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

Screen reader accessibility considerations for media players include: All media player controls must have a Name and a Role B. All media player controls must be keyboard accessible C. Some media player controls.. D: all of above

A

D: All of above

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

True or false: Media players MUST provide the ability to turn on and off all accessibility features such as captions, transcripts, and audio descriptions.

A

False

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

Background sounds in media presentations and web pages have the potential to negatively impact all of the following user categories EXCEPT: A. Users who are hard of hearing B. Blind users C. Deaf users D. Users with cognitive disabilities E. Users with mobility disabilities

A

C. Deaf users

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

True or false: In a multimedia or audio-only presentation, background sounds during dialog MUST be eliminated.

A

False

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

True or false: In a multimedia or audio-only presentation, background audio should be at least 20 decibels lower than (about 4 times quieter than) primary speech or sounds.

A

True

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

It is acceptable for audio content that auto-starts on a web page to play for up to: A. 3 seconds B. 5 seconds C. 10 seconds D. It never acceptable for audio to auto-start on a web page

A

A. 3 seconds

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

While it is acceptable to auto-play audio on a webpage for more than 3 seconds IF a mechanism to turn it off is available, doing so may make it IMPOSSIBLE for which user category/categories to use your web page? A. Deaf users B. Users who are hard of hearing C. People who use screen readers D. Users with cognitive disabilities E. All of the above

A

C. People who use screen readers

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

Which of the following statements is true? A. Photo-epileptic seizures are always milder than ‘regular’ epileptic seizures. B. Flashing of any speed is okay as long as it can be turned off. C. Only people with traumatic brain injuries are sensitive to flashing content. D. High-contrast flashes are more dangerous than low-contrast flashes.

A

D. High-contrast flashes are more dangerous than low-contrast flashes.

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

It is acceptable for content to flash up to how many times per second? A. 1 time B. 3 times C. 7 times D. It is never acceptable for content to flash on a web page

A

B. 3 times

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

WCAG Level AA allows for content to flash more than 3 times per second as long as certain conditions are met. These qualifying conditions include: A. The flashing content contains no red. B. The flashing area is small enough, and the colors are low contrast. C. The flashing content has a mechanism to turn the flashing off. D. It is impossible to quantify what may cause a seizure.

A

B. The flashing area is small enough, and the colors are low contrast.

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

Animations, parallax effects, and background videos or animations in web pages have the potential to negatively impact which of the following user categories: A. Users with vestibular disorders B. Blind users C. Users with cognitive impairments D. A and C E. All of the above

A

E. All of the above

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

Vestibular disorders affect a person’s: A. Reading comprehension B. Balance C. Ability to perceive some colors D. Ability to use a mouse

A

B. Balance

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

True or false: Parallax effects refer to the effect of some elements on a page moving in a different direction or at a different rate than other elements.

A

True

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

Parallax effects can negatively impact: A. Keyboard accessibility B. Readability of text C. Search Engine Optimization D. A and B E. All of the above

A

E. All of the above

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

True or false: Background videos that contain more than just decorative content must be fully accessible with captions, transcript, and audio descriptions, as appropriate.

A

True

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

True or false: Background videos that autoplay are not required to stop playing after 5 seconds.

A

False

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

The procurement laws Section 508 (U.S.) and EN 301 549 (Europe) apply to the procurement of information and communication technology by: A. Public entities B. Private entities C. Domestic entities D. All of the above

A

A. Public entities

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

True or false: The Americans with Disabilities Act (U.S. civil rights law) explicitly covers online content.

A

False

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

True or false: Section 508 of the Rehabilitation Act (U.S. procurement law) explicitly covers online content.

A

True

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

The 21st Century Video Communications and Accessibility Act (CVAA) requires captions for: A. All video content available on the web B. All audio content available on the web C. All video and audio content on the web that was made by U.S. companies D. Video content on the web that was previously aired with captions on television in the US

A

D. Video content on the web that was previously aired with captions on television in the US

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

When Captions Are Needed?

A

Prerecorded multimedia (video plus audio) files MUST include synchronized captions. All live multimedia (video plus audio) events that contain dialog and/or narration MUST be accompanied by synchronized captions. All live audio-only content that contains dialog and/or narration SHOULD be accompanied by text-based synchronized captions.

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

When Transcripts Are Needed?

A

Prerecorded multimedia (video plus audio) SHOULD have a text transcript. Prerecorded audio-only content MUST be accompanied by an easily-reachable text transcript. Prerecorded video-only content MUST include audio descriptions OR a text transcript. A text transcript describing the visual aspects of the video SHOULD be provided for video-only

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

What to Include in Captions and Transcripts

A

Captions MUST be verbatim for scripted content (except when intentionally creating simplified captioning for a relevant target audience, e.g. people with cognitive disabilities). Transcripts MUST be verbatim for scripted content. Important visual events MUST be described in the transcript. Important background sounds MUST be conveyed in captions and transcripts, preferably in [brackets] or (parentheses). Speech that is spoken off-screen MUST be captured in captions and transcripts. The identity of the person speaking MUST be identified in captions and transcripts.

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

Which of the following methods for notifying users of new content does not require JavaScript? A. Moving focus within a page or to another element such as a dialog B. Loading or reloading a page C. ARIA live announcements D. All methods require JavaScript

A

B. Loading or reloading a page

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

When moving focus to an element that is not focusable, it is important to include which one of the following attributes on the container: A. tabindex=”-1” B. tabindex=”0” C. tabindex=”1” D. aria-focus=”true”

A

A. tabindex=”-1”

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

Which of the following is NOT a consideration when moving focus to new content: A. The container on which focus is set must not be empty. B. Focus should not move unexpectedly. C. The element that triggers the focus change must include aria-haspopup=”true”. D. Sending focus to AJAX content must be the last event.

A

C. The element that triggers the focus change must include aria-haspopup=”true”.

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

True or False: ARIA live announcements are an effective way to notify users of new content without moving the user’s focus

A

true

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

True or False: aria-live=”assertive” always gives screen reader users updates, while aria-live=”polite” asks the user if they would like updates.

A

false

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

True or False: The ARIA live region must be present on the page and must be empty before inserting the content to be announced.

A

True

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

If one of your pages employs a time-limit, which of the following are recommended? A. Ensure the time limit is greater than four hours B. Provide a warning when the time limit is about to expire C. Provide an option to extend the session D. A and B E. B and C

A

E. B and C

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

True or false: When a user allows a session to time out, it is not necessary to save data because the user would have extended the session if they intended to continue.

A

False

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

True or false: ARIA live announcements should be used to announce that the time left on a countdown timer every time the visible time remaining changes.

A

False

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

Accessibility problems associated with automatically refreshing or reloading a page include: A. Users may not have time to read content before it disappears B. Users may lose their place on the page C. Users may have a seizure D. A and B E. All of the above

A

D. A and B

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

True or false: If refreshing page content is important for a web site, it is recommended that users be notified that new content is available using a dialog or an ARIA alert message depending on the urgency of the update.

A

true

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

While portions of a page are still loading (lazy loading): A. Screen Readers should announce every time new content has loaded. B. Placeholders for content that is still loading should inform users the content is being loaded. C. Newly loaded content should receive screen reader focus. D. None of the above; this technique should be avoided.

A

B. Placeholders for content that is still loading should inform users the content is being loaded.

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

True or False: Infinite scrolling may prevent a user from accessing information that comes after the infinite scrolling area.

A

True

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

True or False: Giving a screen-reader only method for skipping past scrolling content is an acceptable method for implementing infinite scrolling accessibly.

A

False

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

True or False: Interstitial views are intended to be temporary and therefore it is not required to make screen reader users aware of their presence.

A

False

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

Regarding single-page applications, which of the following statements is FALSE? A. Screen reader users must be made aware of new content loaded on the page. B. Focus management is often an essential part of making a single-page application accessible. C. The of a single-page application should not be updated when the user has selected a link that causes an AJAX event. D. A user must be able to use the browser's back and forward functionality as would be expected in a non-single-page application.

A

C. The of a single-page application should not be updated when the user has selected a link that causes an AJAX event.

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

True or False: ARIA is a programming language that communicates information like names, roles, and values to screen readers.

A

FALSE

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

Which is NOT an example of assistive technology that helps with using the Internet? A. Screen readers B. Screen magnifiers C. Refreshable braille devices D. Wheelchair E. Mouth stick

A

D. Wheelchair

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

True or False: Color-coded text is accessible by default to screen reader users, because screen readers always automatically announce changes in color.

A

False

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

For someone with low vision, all of the following are ways to make text more readable except: A. Zoom or magnify text on the screen B. Use synchronized video captions C. Change text and background colors for better contrast D. Use a screen reader

A

B. Use synchronized video captions

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

The most important consideration for designing web content for someone with motor disabilities is the inability to use: A. The hands B. The legs C. The eyes D. The mouth

A

A. The hands

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

Which types of Disabilities do you know?

A

Blind Low Vision Color-blind Deaf Deafblind Motor Disabilities Speech Disabilities Cognitive Disabilities Reading Disabilities Seizures (Krampfanfälle) Multiple Disabilities

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

What are the rules or checklist of items upon which the guidelines of WCAG 2.0 are based? A. Level AAA B. Success Criteria C. Sufficient Techniques D. Advisory Techniques

A

B. Success Criteria

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

True or False: ARIA was invented to increase screen reader accessibility, especially for interactive scripts.

A

True

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

Under most circumstances, the WCAG level most commonly set as the minimum goal is: A: A B: AA C: AAA

A

B: AA

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

Who is directly affected by the laws of Section 508 of the Rehabilitation Act in addition to the U.S. federal government? A. All organizations that do business with the federal government B. Everyone seeking to make technologies accessible to people with disabilities C. Anyone who uses the Internet D. All U.S. citizens

A

A. All organizations that do business with the federal government

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

Who is directly affected by the Accessibility for Ontarians with Disabilities Act (AODA)? A. All citizens of Canada B. Every person and organization in the Province of Ontario who provides goods, services, facilities, or employment C. U.S. citizens visiting the Province of Ontario D. Anyone who uses the Internet

A

B. Every person and organization in the Province of Ontario who provides goods, services, facilities, or employment

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

Which European mandate is similar to Section 508 in the United States? A. The European Standard for Disability Equality B. EU ADA - European Union Access to Disabilities Act C. EN Section 508 D. EN 301 549: Accessibility requirements suitable for public procurement of ICT (Information and Communication Technology) products and services in Europe

A

D. EN 301 549: Accessibility requirements suitable for public procurement of ICT (Information and Communication Technology) products and services in Europe

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

The Americans with Disabilities Act is an example of which type of accessibility law? A. Civil rights law B. Procurement law C. Industry-specific law D. Administrative law E. Constitutional law

A

A. Civil rights law

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

EN 301 549 is an example of which type of accessibility law? A. Civil rights law B. Procurement law C. Industry-specific law D. Administrative law E. Constitutional law

A

B. Procurement law

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

Designing web sites to benefit people with disabilities: A. Also benefits other users of all kinds B. Helps only a small minority of people C. Is extremely difficult to learn how to do, and should be left only to experienced professionals

A

A. Also benefits other users of all kinds

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

When is the best time to start working to make a design accessible? A. At the end of a project B. In the early stages of planning C. A little bit at a time throughout the project

A

B. In the early stages of planning

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

Accessibility is best approached as: A. A one-time project with a defined end date B. An ongoing program that requires constant commitment C. A legal hassle

A

B. An ongoing program that requires constant commitment

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

For someone with low vision, what are ways to make text more readable? A. Zoom or magnify text on the screen B. Use synchronized video captions C. Change text and background colors for better contrast D. Use a screen reader

A

A. Zoom or magnify text on the screen C. Change text and background colors for better contrast D. Use a screen reader

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

Which type of disability is the most common? A: Blindless or low vision B: Color Blindness C: Auditory disabilities D: Motor disabililties E: Cognitive Disabilities

A

E: Cognitive Disabilities

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

True or false: You can create a website that complies fully with the WCAG accessibility guidelines, but which is not fully accessible.

A

True

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

Which of the following is an example of a subjective accessibility guideline that is not easily testable? A. All images have an alt attribute. B. The cognitive skills required to use a web page are minimized. C. All form input elements have a label. D. The web page has a title.

A

B. The cognitive skills required to use a web page are minimized.

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

Which of the following is NOT one of the 7 Principles of Universal Design? A. Equitable Use B. Simple and Intuitive Use C. Tolerance for Error D. High Physical Effort

A

D. High Physical Effort

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

Name the 7 Principles of Universal Design?

A

1 Principle One: Equitable Use (Gleichberechtigte Nutzung) 2 Principle Two: Flexibility in Use 3 Principle Three: Simple and Intuitive Use 4 Principle Four: Perceptible Information 5 Principle Five: Tolerance for Error 6 Principle Six: Low Physical Effort 7 Principle Seven: Size and Space for Approach and Use

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

True or False: The design-centric approach to accessibility focuses on a person’s limitations.

A

False

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

Which of the following statements is true? A. Web accessibility happens readily without planning. B. As long as all website components are accessible individually, the entire user experience will always be accessible. C. Retrofitting an accessibility solution can solve most accessibility problems, without having to start the design from scratch. D. Accessibility rot in websites can occur when designers see accessibility as a one-time project, rather than an ongoing process.

A

D. Accessibility rot in websites can occur when designers see accessibility as a one-time project, rather than an ongoing process.

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

True or False: Designing for edge cases is a more inclusive design approach than designing for the statistical normal distribution of users.

A

True

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

Which of these aspects can affect the experience of a website user with a disability? A. The person’s technology literacy and experience B. The amount of time the person has had the disability C. The person’s level of expertise at using their assistive technology D. All of the above

A

D. All of the above

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

True or False: When designing accessible solutions, it’s helpful to think of disabilities as binary; either they are there or not there.

A

False

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

What does an “accessibility first” mindset mean, with respect to website and app development? A. Accessibility is the number one most important consideration, above everything else. B. Accessibility should be incorporated from the very start of the project all the way to the end. C. The project budget should prioritize accessibility before any other elements. D. Problems related to accessibility should always be fixed first, before any other problems.

A

B. Accessibility should be incorporated from the very start of the project all the way to the end.

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

True or False: Designing for people with disabilities has collateral benefits for all users.

A

True

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

True or False: It’s a good idea to create two versions of a website, the standard one and the accessible one.

A

False

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

The meaning of “affordance” is: A. How much of a project’s budget can be dedicated to accessibility B. The range of possible actions that someone can perform with an object C. The error tolerance within an accessible website design

A

B. The range of possible actions that someone can perform with an object

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

True or false: Screen reader users usually navigate pages by listening to the entire page being read from start to finish. A. True B. False

A

False

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

What determines the audio-structural experience of a web page for a screen reader user? A. The visual layout B. The semantic structure

A

B. The semantic structure

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

True or false: to provide accessible content for deafblind users, you must ensure that everything is available in a machine-readable text format. A. True B. False

A

True

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

True or False: Open captions (rather than closed captions) are a good choice to accommodate all users.

A

False

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

True or False: WCAG provides extensive and detailed guidelines for designing for users with cognitive disabilities.

A

False

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

To create accessible user-generated content, you can employ all of these strategies, EXCEPT: A. Automate accessibility fixes. B. Prompt and guide users to create accessible content during the authoring process. C. Limit the type of content users can post. D. Require users to delete and re-post content that has accessibility errors.

A

D. Require users to delete and re-post content that has accessibility errors.

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

True or false: Anything that invites and posts user input is an authoring tool.

A

True

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

True or false: There are no authoring tool guidelines for accessibility.

A

False

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

Which of the following is NOT an example of an automated accessibility solution that is currently available? A. Skype Translator B. Automatic captions on YouTube C. Automatic audio descriptions on YouTube D. Automatic alt text on Facebook images

A

C. Automatic audio descriptions on YouTube

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

Which Design Considerations for Blindness are relvant: A: All content must be presented in text or via a text equivalent (e.g., alt text for images or other non-text objects). B: All functionality must be available using only the keyboard (Note: be sure to test with the screen reader turned on, because there are subtle differences in keyboard behaviors when the screen reader is on). C: The content must use markup with good structure and semantics (headings, landmarks, tables, lists, etc.). D: All custom controls (e.g., expand/collapse buttons, media player volume control, dialogs, etc.) must have the correct name/label, role (either with HTML or with ARIA), and value, and must change value when appropriate (e.g., aria-expanded=”false” changes to aria-expanded=”true” after activating the button). E: Users must receive immediate feedback after all actions, via their screen reader. Silence after activating a feature is always bad! F: Videos require audio descriptions (additional narration of visual content) if the video’s original audio track (dialog, sounds, narration) does not explain everything that a person who is blind would need to know to understand the video. G: On mobile devices: All features require a click action. Custom swipe actions on web pages will not work with the screen reader turned on. H: All of above

A

All

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

Which Design Considerations for Low Vision are relevant? A: The pinch-to-zoom feature must not be disabled (avoid ````). B: All text must pass contrast guidelines against the background (verify using Deque’s axe DevTools accessibility browser extension or a similar tool). C: Links, buttons, and controls must have a visible :focus state and should have a visible :hover state. D: The user interface should provide a clear visual distinction between content (e.g., text) and controls (e.g., buttons, links, etc.). E: All of above

A

ALL

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

True or False: Design Considerations for Colorblindness are: All information must be understandable without needing to distinguish between colors Reds and greens are especially problematic when used as the only way to convey information.

A

True

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

Which Design Considerations for Deafness and Hard-of-Hearing are relevant? A: All videos must have captions. B: All audio-only content must have transcripts. C: Sign language interpretation of videos can be very helpful. D: All videos must have audio description E: A, B, und C

A

E: A, B und C

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

Which Design Considerations for Deafblindness are relevant? A: All of the considerations for blindness apply. B: All of the considerations for deafness apply. C: In addition, a transcript should be provided for multimedia (video plus audio) content. D: All of above

A

D: All of above

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

Which Design Considerations for Dexterity/Motor Disabilities are relevant? A: All functionality must be available using only the keyboard. B: Links, buttons, and controls must have a visible :focus state and should have a visible :hover state. C: With session time-outs, warn users before the time expires (e.g., an accessible dialog or alert), and give them the option to extend the session. Ensure the warning itself allows for slow responses. A recommended minimum response time is 2 minutes. D: Provide large click targets (links, buttons, controls) for users who have movements that are difficult to control E: All of above

A

E: All of above

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

Design Considerations for Speech Disabilities Don’t depend on voice input (e.g., in mobile apps, custom widgets, games, etc.).

A

Why? People with speech disabilities have difficulty with producing voice sounds and using muscles in their mouths, so it is critical that alternative means of communication are provided such as text chats, forms, email, etc.

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

Design Considerations for Cognitive Disabilities For users with lower comprehension: Simplify the interface as much as possible. Simplify the content as much as possible. Keep videos and audio as short as possible. Limit the number of choices on the screen. Provide help features. Design for ease of use. Test the usability of the interface with actual users, preferably including users with cognitive disabilities.

A

Why? Users who have lower comprehension will have a better web experience if the interface and content are easy to use and easy to understand. Too many options and complex information may be difficult for them to process.

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

Design Considerations for Cognitive Disabilities For users with memory loss: Retain information across screens, and within a path. Provide help features.

A

Why? A website that has predictability across all its pages (same navigation, same structure, etc.) will greatly benefit users with memory loss. Sites that are too complicated may fatigue users with memory loss. If a user has difficulty interacting with the web page, help features can assist them with navigating the web page.

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

Design Considerations for Cognitive Disabilities For users with distractibility (Ablenkbarkeit): Reduce or eliminate distractions (be careful with ads, carousels, intrusive audio, intrusive video, etc.).

A

Why? Too many distractions on a web page may cause people with cognitive disabilities to miss important information being conveyed on a web page. Distractions may cause them to lose focus or overwhelm them, and users may navigate from the web page.

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

Design Considerations for Reading Disabilities (Leseschwächen) For users with difficulty reading (dyslexia, etc.): Supplement text with illustrations, videos, audio, etc. Avoid the highest level of contrast for text against background (e.g., black on white) BUT be sure to stay within the contrast range that people with low vision need.

A

Why? People who have difficulty reading text will need the information conveyed in other formats like images, audio, and video. Using the highest contrast may also be difficult for people to read and hard on the eyes, so using colors that are a slight step down in contrast (e.g., dark grey against white or off-white) may make reading text a little easier.

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

Design Considerations for Seizure Disorders (Anfallsleiden) Don’t include videos, animations, or transitions with sequences of flashing light at a rate of 3 or more times per second.

A

Why? Using content that flashes, blinks, or flickers 3 or more times per second may trigger photo-epileptic seizures in susceptible users.

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

True or false: Can you create a design that complies fully with the accessibility guidelines, but which is not fully accessible?

A

True

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

A JavaScript drag-and-drop widget is designed to work with any of the following: a mouse, a touchscreen, or a keyboard. Which design principle applies? A: Principle Two: Flexibility in Use B: Principle Three: Simple and Intuitive Use C: Principle Four: Perceptible Information

A

A: Principle Two: Flexibility in Use

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

A web site uses semantic markup in all the appropriate places (headings, landmarks, table structure, form labels, etc.) and creates a single design that works well for users who are sighted as well as for users who are blind. Which design principle applies? A: Principle One: Equitable Use B Principle Six: Low Physical Effort C: Principle Two: Flexibility in Use

A

A: Principle One: Equitable Use

193
Q

A video tutorial on how to tie your shoes is shown with no narration, making the video useless for a person who is blind. What design principle is being violated here? A: Principle One: Equitable Use B: Principle Four: Perceptible Information C: Principle Two: Flexibility in Use

A

B: Principle Four: Perceptible Information

194
Q

A web site is designed with many links in the header and navigation section, and no headings, landmarks, or “skip to main content” link to allow users to jump to the main content. What design principle is being violated here? A: Principle Six: Low Physical Effort B: Principle Four: Perceptible Information C: Principle Two: Flexibility in Use

A

A: Principle Six: Low Physical Effort

195
Q

What is the different between Accessibility and UX?

A

accessibility audience: people with disabilities intent: the targeted audience can perceive, understand, navigate, and interact with websites and tools (an equivalent user experience) user experience audience: anyone intent: a product should be effective, efficient, and satisfying Accessibility includes a more technical aspect (considerate of assistive technologies, for instance); UX is more principled in its approach. Usable accessibility = a11y + UX. Accessibility is just one aspect of the “universal web”.

196
Q

Avoid layouts and sizing which cause: A. Rotating images B. Horizontal scrolling C. Vertical scrolling D. All of the above

A

B. Horizontal scrolling

197
Q

Fill in the blank: Ensure text on the page can be resized up to ______ without loss of content or function: A. 1000% B. 500% C. 350% D. 200%

A

D. 200%

198
Q

When modifying web content to be viewed on small viewports, you can use which of the following techniques? A. Reduce the size of content B. Eliminate content C. Simplify content D. All of the above

A

D. All of the above

199
Q

Which of the following meta viewport elements will disable pinch-to-zoom on mobile devices? (Select all that apply) A. user-scalable=no B. user-scalable=1 C. maximum-scale=1.0 D. maximum-scale=2.0 E. initial-scale=1.0 F. A and C G. B and E H. None of the above

A

F. A and C

200
Q

Which image type(s) allow text in the image to scale up smoothly? (Select all that apply) A. JPG B. PNG C. BMP D. SVG E. TIFF F. B and D G. C and E H. None of the above

A

D. SVG

201
Q

The recommended minimum touch target size for touch screen devices is approximately: A. 4.8mm or 22px B. 7.2mm or 33px C. 9.6mm or 44px D. 10.8mm or 50px

A

C. 9.6mm or 44px

202
Q

Which of the following groups of people are affected when only color is used to communicate information on a web page? (Select all that apply) A. People who have low vision B. People who are blind C. People who are colorblind D. All of the above groups are affected E. B and C

A

D. All of the above groups are affected

203
Q

True or false: Using distinct colors only for hover and focus on links are enough to distinguish links from normal text.

A

False

204
Q

From an accessibility stance, why should standard (real) text and native UI components be used instead of images of text and UI components? A. Standard text and native components give web designers more options to style the look of a web page. B. As long as contrast ratio requirements are met, images of text and native components can and should be used. C. The use of standard text and native components allows users to customize text and colors. D. As long as alternative text is provided, images of text and native components can and should be used.

A

C. The use of standard text and native components allows users to customize text and colors.

205
Q

True or false: Providing alternative text for an image that communicates information using color alone is sufficient (ausreichend) in communicating that information to users.

A

False

206
Q

What method can be used to distinguish UI components from surrounding content? A. Providing an outline around the UI component B. Using a different color for the UI component that has high contrast against the surrounding content C. Changing the background of the UI component D. Any of the above methods can be used

A

D. Any of the above methods can be used

207
Q

To aid people with low vision or color deficiencies, the contrast between text and its background must be at least: A. 3 to 1 for small text and 2 to 1 for large text B. 5 to 1 for small text and 6.5 to 1 for large text C. 4.5 to 1 for small text and 3 to 1 for large text D. 12 to 1 for small text and 8 to 1 for large text

A

N/A

208
Q

True or false: When high contrast is activated on an operating system, a user cannot choose to have the high contrast theme override the styling of a web page.

A

False

209
Q

The contrast ratio for UI component boundaries must be at least: A. 3 to 1 B. 2.5 to 1 C. 5 to 1 D. 4.5 to 1

A

A. 3 to 1

210
Q

Enhancing the visual focus indicator benefits which group(s) of users? (Select all that apply) A. Users who are colorblind B. Users who have low vision C. Sighted keyboard users D. All of the above groups are affected

A

D. All of the above groups are affected

211
Q

The contrast ratio for visual focus indicators must be at least: A. 3 to 1 B. 4.5 to 1 C. 4 to 1 D. 3.5 to 1

A

A. 3 to 1

212
Q

What is the purpose of “visual white space” in web design? A. To ensure sufficient color contrast B. To allow user CSS customization C. To visually separate different elements of the design

A

C. To visually separate different elements of the design

213
Q

True or False: A text label for a form input should never be placed adjacent (neben) to that text input.

A

False

214
Q

If the text label for an icon is placed visually too far away from the icon, which category of users with a disability will be most affected? A. Blind users B. Deaf users C. Users with low vision D. Users with colorblindness

A

C. Users with low vision

215
Q

What is the recommended maximum number of main focus areas on a web page? A. One B. Two C. Three D. Any number is acceptable as long as they are designed well

A

A. One

216
Q

The order that screen readers navigate through page content is determined by the: (Select all that apply) A. Visual order of the elements on the screen: left-to-right, top-to-bottom B. CSS C. Document Object Model (DOM) D. All of the above

A

C. Document Object Model (DOM)

217
Q

True or false: For screen reader users, the reading order and focus order are always the same thing.

A

False

218
Q

Which of the following can impact the reading order and focus order of page content? (Select all that apply) A. JavaScript DOM manipulation B. Turning on a screen reader C. Magnification D. CSS positioning techniques E. A and D F. B and C G. B and D

A

E. A and D

219
Q

True or false: The best way to fix focus order problems is to use tabindex values greater than 1.

A

False

220
Q

Adequate mouse-click target sizes help which of the following user categories? (Select the most complete answer.) A. Users with low vision B. Users with tremors C. Users with limited dexterity D. All of the above

A

D. All of the above

221
Q

True or false: Enhanced visual hover indicators help users who can only navigate websites with a keyboard.

A

false

222
Q

The mouse cursor becomes a hand pointer when the mouse cursor hovers over which of the following native HTML elements? A. Buttons B. Links C. Text fields

A

B. Links

223
Q

Which of the following items will be focusable with the tab key? A. A <span> element with tabindex=”0” B. A <div> element with tabindex=”-1” C. An ARIA link created as follows: <span></span>``</div></span>

A

A. A <span> element with tabindex=”0”</span>

224
Q

If the tab order is not correct, the best way to fix it is to: A. Use tabindex (e.g. tabindex=”1”, tabindex=”1”, etc.) B. Arrange the order of the elements in the DOM to match the intended tab order. C. Use JavaScript to detect onblur events and send the focus to the correct element. D. Let the user customize the tab order

A

B. Arrange the order of the elements in the DOM to match the intended tab order.

225
Q

Which of the following is NOT an acceptable visual focus indicator style? A. a:focus {outline: 0;} B. a:focus {outline: red 2px solid;} C. button:focus {color: #fff; background: #000; outline: yellow 1px solid} D. [role=link] {outline: red 2px solid;} E. input[type=text] {border: red 1px dotted blue}

A

A. a:focus {outline: 0;}

226
Q

What should be the logical progression of the focus when a person opens and then closes an ARIA dialog? A. The focus should go to the dialog, then back to the original button that opened the dialog. B. The focus should go to the dialog, then back to the top of the original web page. C. The focus should go to the top of the page, then to the dialog, then back to the top of the page. D. The focus should go to dialog, then back to the browser address bar.

A

A. The focus should go to the dialog, then back to the original button that opened the dialog.

227
Q

True or false: A safe keystroke to use for custom keyboard functionality on web pages is the “H” key.

A

false

228
Q

True or false: Screen readers automatically notify users when a web page implements custom keystrokes.

A

false

229
Q

True or false: If you code a widget to be fully keyboard-accessible when using the arrow keys, touch devices users (without keyboards) will still not be able to use the widget, in most cases.

A

true

230
Q

True or false: Custom JavaScript gesture events on web pages will probably not work when a touch device screen reader is turned on.

A

true

231
Q

The minimum recommended touch target size is: A. 10px by 10px B. 20px by 20px C. 24px by 24px D. 36px by 36px E. 44px by 44px F. 64px by 64px

A

E. 44px by 44px

232
Q

Voice input or speech recognition software is most commonly used by which of the following user categories? A. Blind users B. Low-vision users C. Users with mobility impairments D. Deaf users

A

C. Users with mobility impairments

233
Q

True or false: The accessibility design and development principles for speech recognition users are largely the same as those for keyboard-only and screen reader users.

A

true

234
Q

True or false: When basic Dragon voice commands do not work on a web page, an alternate method that can be used to interact with page content is called “Voice Grid.”

A

false, Mouse Grid

235
Q

True or false: Dragon provides support for nearly 100% of ARIA attributes.

A

false, only: button link radio checkbox aria-label aria-labelledby

236
Q

All of the following statements regarding transitions on a web page are true EXCEPT: A. Transitions can be distracting for users with cognitive disabilities. B. Transitions should be brief and kept to a minimum. C. Transitions between foreground and background elements (parallax effects) should occur at a fast rate. D. Transitions must not interfere with web page reading or interaction.

A

C. Transitions between foreground and background elements (parallax effects) should occur at a fast rate.

237
Q

Interactive elements within content that moves or disappears quickly may be problematic for which group(s) of users? (Select the most complete answer.) A. Keyboard users B. Screen reader users C. Alternative mouse device users D. Users with cognitive disabilities E. A and B F. All of the above

A

F. All of the above

238
Q

The most recommended method to programmatically associate a label and form field is: A. aria-label attribute B. title attribute C. Explicit association D. Implicit association````

A

C. Explicit association

239
Q

True or false: Icons must not be used as labels.

A

False Icons MAY be used as visual labels (without visual text) if the meaning of the icon is visually self-evident AND if there is a programmatically associated semantic label available to assistive technologies.

240
Q

Why is the use of placeholder text as a form label bad for accessibility? A. The default color for placeholder text does not meet color contrast requirements B. Placeholder text disappears when data is entered in the field C. Placeholder text is not supported in most browsers D. A and B E. All of the above

A

A. The default color for placeholder text does not meet color contrast requirements B. Placeholder text disappears when data is entered in the field

241
Q

Which of the following statements about labels is NOT correct? A. Labels should be visually close to their corresponding form fields. B. Labels must be programmatically associated with their matching elements. C. Labels should be close to their corresponding form fields in the DOM. D. Labels should be close in length to the other labels on the page.

A

D. Labels should be close in length to the other labels on the page.

242
Q

True or false: When multiple visible labels are used to label one field, the best attribute to associate each label with the field is aria-label.

A

false When multiple labels are used for one element, each label MUST be programmatically associated with the corresponding element. In this case, aria-labelledby is a useful tool to associate multiple labels with a single field.

243
Q

True or false: When one visible label is used to label multiple fields, such as the three parts of a telephone number, each individual field must have a screen reader accessible label.

A

true

244
Q

Which of the following methods can NOT be used to associate a group label with the fields it labels? A. and B. and C. Nested fieldsets to denote groups within groups D. role=”group” and aria-labelledby``

A

A. and``

245
Q

True or false: Color must never be used in labels.

A

false Group labels MUST NOT rely solely on references to sensory characteristics.

246
Q

True or false: As long as a group label is programmatically associated with the group of fields it labels, its location in the DOM does not matter.

A

false

247
Q

True or false: Group labels must be available to all users — sighted and non-sighted alike.

A

true

248
Q

True or false: Adding the ARIA attribute aria-required=”true” tells every user that a form input is required.

A

false

249
Q

Which of the following methods does NOT programmatically associate form instructions with their associated fields? A. Using aria-describedby on the element B. Providing instructions in regular text nearby the element C. Placing instructions in the element D. Placing instructions for a group of fields in the legend

A

B. Providing instructions in regular text nearby the ```` element

250
Q

Instructions that aren’t placed visually near their corresponding form fields can negatively impact which of the following user categories? A. Users who are blind B. Users who have low vision C. Users with vestibular disorders D. All of the above

A

B. Users who have low vision

251
Q

Using a different text color for an input’s label to convey that input is required may exclude all of the following user categories EXCEPT: A. Users who are blind B. Users who have low vision C. Users who are deaf or hard of hearing D. Users who are colorblind

A

C. Users who are deaf or hard of hearing

252
Q

Which of the following is the most semantically-appropriate way to associate instructions with an input? A. Include the instructions within the text, along with the label/name of the input B. Write the text in an aria-instructions attribute C. Reference the ID of the instructions via aria-describedby D. Include the instructions in the title attribute, to create a visible tooltip on mouse hover

A

C. Reference the ID of the instructions via aria-describedby

253
Q

Which of the following methods is NOT a best practice for progressive form updates? A. Provide a summary of users’ choices at the end of the form before submission B. Include only one step on the screen at a time C. Number the steps in the form D. Manage keyboard focus as users move forward and backward through the form E. Make dynamic changes in the form anywhere in the DOM

A

E. Make dynamic changes in the form anywhere in the DOM

254
Q

True or false: From an accessibility perspective, focusing on a form element must not cause a change of context, but context changes may occur when a user hovers over a form element.

A

false

255
Q

True or false: Changes in context can inhibit accessibility when those changes happen automatically and users aren’t allowed to request the changes in context.

A

true

256
Q

To conform to ARIA specification, all of the following methods should be applied when creating a custom checkbox within a form EXCEPT: A. Provide a visible and programmatically-associated label for the checkbox B. Ensure the checkbox is assigned role=”checkbox” C. Convey to users the state of the checkbox through toggling aria-expanded values D. Make sure the Space bar can be used to change the state of the checkbox

A

C. Convey to users the state of the checkbox through toggling aria-expanded values

257
Q

True or false: Custom form elements should be modeled after native HTML form elements.

A

true

258
Q

What might happen if an aria-live announcement is tied to a blur event in a form? A. A screen reader might read the announcement after it reads the next item in focus B. A screen reader user might miss the announcement because the announcement competes with the screen reader reading the next item in focus C. The aria-live announcement might be made before the screen reader reads the next item in focus D. None of the above

A

B. A screen reader user might miss the announcement because the announcement competes with the screen reader reading the next item in focus

259
Q

What should happen to the page title if a form submission causes the same page to reload? A. Nothing should happen to the page title B. The page title should reflect errors in form submission C. The page title should reflect the status of the form submission D. Form submission should not cause the page to reload

A

C. The page title should reflect the status of the form submission

260
Q

Which is NOT a good technique for preventing errors in forms? A. Provide clear, accurate, and accessible form labels B. Use custom form inputs whenever possible C. Give additional instructions for inputs if necessary D. Provide visual cues that guide users through the form E. Allow users to review their choices before and after they submit the form

A

B. Use custom form inputs whenever possible

261
Q

True or false: In terms of accessibility, if error messages are programmatically associated with their form inputs, then providing visible error messages for form inputs is optional.

A

false

262
Q

Which ARIA attribute should be used to identify which form elements have errors? A. aria-required B. aria-describedby C. aria-readonly D. aria-invalid

A

D. aria-invalid

263
Q

Which ARIA attribute should be used to provide more information about an error in a form element? A. aria-required B. aria-describedby C. aria-readonly D. aria-invalid

A

B. aria-describedby

264
Q

Which of the code examples below best adheres to the requirements and best practices for error feedback? A. Error - Password: B. `` Password: `` C. <p>Error: Password must be at least be 8 characters</p> Password: D. `<p>`Error: Password must be at least be 8 characters`</p>` `` Password: ``

A

C. <p>Error: Password must be at least be 8 characters</p> Password: ````

265
Q

True or false: Regions like aria-live and role=”alert” can be used to convey success messages as long as success messages aren’t hidden from visual users.

A

true

266
Q

True or false: The basic keyboard commands for interacting with HTML form controls are common across all screen reader / browser combinations.

A

true

267
Q

Which one of the following is NOT a screen reader mode? A. Document mode B. Forms mode C. Caption mode D. Table mode E. Application mode

A

C. Caption mode

268
Q

Using the Tab key to move through a page will put focus on all of the following elements EXCEPT: A. Form fields B. Links C. Elements with tabindex=”0” D. Elements with tabindex=”-1”

A

D. Elements with tabindex=”-1”

269
Q

True or false: The default mode for most screen readers is forms mode.

A

false

270
Q

True or false: Since plain text is non-focusable, text such as instructions or formatting hints should not be placed in the middle of a form unless the text is programmatically associated with a focusable element.

A

true

271
Q

The first step to conducting web accessibility testing is: A. Run automated tests B. Define the scope of the test C. Conduct manual testing D. Plan for remediation of accessibility issues E. Conduct regression testing

A

B. Define the scope of the test

272
Q

All of the following are things to consider when determining the scope of the accessibility tests, EXCEPT: A. Which pages have the most diversified and representative content, structure, and semantics types? B. Are there any important transactional or multi-step processes? C. How many users can access an interface element at one time without crashing it? D. What templates are in use on the site?

A

C. How many users can access an interface element at one time without crashing it?

273
Q

True or False: Testing all of the pages of a web site may not be easy or practical, but it has to be done to ensure an adequately compliant site.

A

false

274
Q

True or False: Analyzing specific page content like images, forms, tables, and widgets should be included in the scope of the evaluation.

A

true

275
Q

When beginning the actual testing process, what should testers do first? A. Conduct keyboard accessibility testing B. Check if color is used to convey meaning C. Run an automated test D. Test for form validation accessibility

A

C. Run an automated test

276
Q

True or False: About a third of accessibility problems can be found through automated testing.

A

true

277
Q

Screen readers can help you identify issues with which of the following? A. Visual focus indicator B. Keyboard functionality C. Touch target size D. Alternative text E. Custom widgets F. Media players G. Form labels and instructions H. Color used to convey meaning I. Headings J. Video only presentations K. Answers B, D, E, F, G, and I L. Answers A, B, C, G, H, I, and J M. All of the above

A

K. Answers B, D, E, F, G, and I Keyboard functionality Alternative text custum widget media players form labels and instruction headings

278
Q

True or False: The purpose of links must always be conveyed through the link text itself.

A

false, could also be through context or If a link contains only an image, the image’s alternative text should describe the purpose of the link or For icon fonts used as links, the purpose of the link should be conveyed using one of the following ARIA attributes: aria-label, aria-labelledby, or aria-describedby

279
Q

True or False: If error messages used in form validation are conveyed through a screen reader, then they do not need to be visible.

A

false

280
Q

To be compliant, captions for videos must include all of the following EXCEPT: A. Description of visual content B. Narration and dialog C. Identity of multiple speakers D. Important sound effects

A

A. Description of visual content

281
Q

An effective bug report should be written for which of the following recipients? A. Developers and designers who have extensive knowledge in accessibility B. The core accessibility team C. Stakeholders who may not be well-informed about accessibility D. Other testers who can validate the issue

A

C. Stakeholders who may not be well-informed about accessibility

282
Q

If a bug report includes a title, description, and steps to reproduce the issue, what should it also include to make it more effective? (Select all that apply) A. Recommendations for how to fix the issue B. Expected behavior and/or results C. Severity of the issue D. All of the above E. None of the above; the report is effective as is

A

D. All of the above

283
Q

Remediation for all accessibility issues should be: A. Prioritized according to factors such as impact, severity, frequency, etc. B. Made top priority for all staff until the issues are resolved C. Performed by contractors D. Completed before the application is released

A

A. Prioritized according to factors such as impact, severity, frequency, etc.

284
Q

True or false: Automated testing should only be conducted during the testing phase of the development lifecycle.

A

false

285
Q

Which type of testing allows developers to evaluate small chunks of code for accessibility issues without any dependencies? A. Regression testing B. Integration testing C. Unit testing D. Manual testing

A

C. Unit testing

286
Q

True or false: The more developers incorporate automated accessibility testing into the build/creation phase, the more confident they will be in addressing accessibility issues.

A

true

287
Q

Testing to uncover any new errors introduced by the remediation process is called: A. Integration testing B. Acceptance testing C. Beta testing D. Regression testing

A

D. Regression testing

288
Q

Are all of this Screenreader Browser combination are right? Desktop-Screenreader: (Betriebssystem ist Windows, sofern nicht anders angegeben.) JAWS mit Chrome NVDA mit Firefox NVDA mit Chrome JAWS mit IE VoiceOver mit Safari (macOS) Narrator mit Edge Mobile Screenreader: VoiceOver mit Safari (iOS) TalkBack mit Chrome (Android)

A

YES

289
Q

People with which of the following disabilities may use screen readers? (Select all that apply) A. Blindness B. Low vision C. Deafblindness D. Color blindness E. Deafness F. Reading disabilities G. A, B, C, and D H. B, E, and F I. A, B, C, and F J. All of the above

A

I. A, B, C, and F A. Blindness B. Low vision C. Deafblindness F. Reading disabilities

290
Q

True or False: You can customize web content to screen reader users by detecting which screen reader they’re using.

A

false

291
Q

Which phone is currently the most popular among blind users? A. Windows Phone B. iPhone C. Android Phone D. Blackberry Phone

A

B. iPhone

292
Q

True or False: Screen readers can output to either audio or Braille.

A

true

293
Q

Which screen readers are available for Windows? (Select all that apply) A. JAWS B. VoiceOver C. TalkBack D. NVDA E. Window-Eyes F. C and D G. A, D, and E

A

G: A,D,E A. JAWS D. NVDA E. Window-Eyes

294
Q

True or False: Testing with screen readers is recommended, but is not required, if automated accessibility tests are performed prior to launching web content.

A

False

295
Q

Blind screen reader users are most likely to navigate web content using what? A. Voice activation B. Mouse C. Trackpad D. Motion detection E. Keyboard

A

E. Keyboard

296
Q

How do screen readers treat columns of text created by two floating <div> elements side by side? A. Screen readers read each column one at a time, starting with the column that appears first in the DOM B. Screen readers can’t read columns C. Screen readers read the first line of column 1, followed by the first line of column 2, followed by the second line of column 1, followed by the second line of column 2, and so on. D. Screen readers read only the first column</div>

A

A. Screen readers read each column one at a time, starting with the column that appears first in the DOM

297
Q

Do screen readers notify users about the visual placement of items on the page (e.g., explaining columns of text, or floating items with wrapping text)?

A

No

298
Q

True or False: In their default settings, most screen readers announce every comma and every period.

A

false

299
Q

True or False: When reading the number 300, if you hear VoiceOver say “Three zero zero” instead of “Three hundred”, it means you need to fix the way you wrote the number.

A

false

300
Q

Which of the following visual styles do most screen readers in their default settings announce to users while reading in normal browse mode? A. Bold B. Italic C. Background colors D. All caps E. Colors F. Visual placement G. Indentation H. None of the above

A

H. None of the above

301
Q

What do developers need to keep in mind about the virtual buffer of screen readers? A. Blind users cannot access the virtual buffer B. The virtual buffer is keyboard-accessible C. There may be a delay between the time when an AJAX load event is complete and when the virtual buffer is updated D. The virtual buffer must be invoked via JavaScript

A

C. There may be a delay between the time when an AJAX load event is complete and when the virtual buffer is updated

302
Q

Which of the following do screen readers read? A. The source code (i.e. the markup available using “view source”) B. The DOM (the markup after it has been processed by the browser) C. The visible text on the screen (e.g. the output as rendered through the graphics processor) D. All of the above E. None of the above

A

B. The DOM (the markup after it has been processed by the browser)

303
Q

True or false: All browsers use the same accessibility API.

A

false

304
Q

Which of the following elements allow screen readers to quickly “glance” at the structure of the topics and text content in a web page? A. Headings B. Lists C. Graphics D. Tables

A

A: Headings

305
Q

The only way a screen reader can read non-focusable content (e.g., paragraphs, headings, div elements, etc.) is to start at the beginning of the page and let the screen reader read everything on the page from beginning to end. A. True B. False

A

false

306
Q

In Table Navigation Mode, users can: A. Navigate table by table B. Navigate between cells in a table C. Generate a list of tables D. None of the above

A

B. Navigate between cells in a table

307
Q

Which of the following allow screen reader users to navigate to areas like the main content, footer, or menu sections of a web page? A. Links B. Tables C. Graphics D. Landmarks

A

D. Landmarks

308
Q

True or False: Screen reader users sometimes explore forms by navigating through all the form fields before filling any of them out, to give them a better sense of what the form is like.

A

true

309
Q

Which screen reader mode in NVDA allows users to type “H” to go to the next heading? A. Browse or document mode B. Focus mode C. Application mode D. Forms mode E. Table navigation mode F. Scan mode G. Virtual cursor

A

A. Browse or document mode

310
Q

True or false: VoiceOver on OSX does not differentiate between document/browse mode and focus mode

A

True

311
Q

True or false: Non-focusable text (e.g., regular paragraphs, <div> elements, headings, etc.) are not available to NVDA users in focus mode.</div>

A

True

312
Q

What happens in JAWS when you type the letter “G” when the focus is on a text input, and when JAWS is in forms mode?. A. JAWS says “G” out loud, and the letter “G” is typed in the text field B. JAWS navigates to the next graphic C. Nothing D. JAWS types a smiley face in the text field E. JAWS enters into Graphics Mode.

A

A. JAWS says “G” out loud, and the letter “G” is typed in the text field

313
Q

Which browser is recommended for use with JAWS? A. Chrome B. Opera C. Firefox D. Safari E. Edge

A

A. Chrome

314
Q

When using JAWS, how do you navigate to the next item? A. N B. I C. Down arrow D. Up arrow E. Ctrl + Shift N F. Caps lock + down arrow G. Insert + down arrow H. Tab I. Not available in JAWS

A

C. Down arrow

315
Q

When using JAWS, how do you navigate to the next heading? A. Ctrl + Alt + H B. Ctrl + Shift H C. Caps lock + H D. Insert + H E. H F. G G. Not available in JAWS

A

E. H

316
Q

When using JAWS, how do you navigate to the next landmark region? A. R B. Ctrl + Alt + L C. Ctrl + Shift R D. Caps lock + L E. Insert + R F. L G. Not available in JAWS

A

A. R

317
Q

When using JAWS, how do you pull up the elements list? A. E B. Ctrl + Alt + E C. Ctrl + Shift L D. Caps lock + F3 E. Insert + F3 F. L G. Not available in JAWS

A

E. Insert + F3

318
Q

Which browser is recommended for use with NVDA? A. Chrome B. Opera C. Firefox D. Safari E. Edge F. Internet Explorer

A

C. Firefox

319
Q

When using NVDA, how do you navigate to the next item? A. N B. I C. Down arrow D. Up arrow E. Ctrl + Option + Command N F. Caps lock + down arrow G. Insert + down arrow H. Tab I. Not available in NVDA

A

C. Down arrow

320
Q

When using NVDA, how do you navigate to the next heading? A. Ctrl + Alt + H B. Ctrl + Shift H C. Caps lock + H D. Insert + H E. H F. G G. Not available in NVDA

A

E. H

321
Q

When using NVDA, how do you navigate to the next landmark region? A. D B. Ctrl + Alt + L C. Ctrl + Shift D D. Caps lock + L E. Insert + R F. R G. Not available in NVDA

A

A. D

322
Q

When using NVDA, how do you pull up the list of links, headings, and landmarks? A. E B. Ctrl + Alt + E C. Insert + F7 D. Ctrl + Shift F7 E. Caps lock + F3 F. Insert + F3 G. H H. Not available in NVDA

A

C. Insert + F7

323
Q

Which browser is recommended for use with VoiceOver on iOS? A. Chrome B. Opera C. Firefox D. Safari E. Internet Explorer

A

D. Safari

324
Q

When using VoiceOver in iOS, how do you navigate to the next item? A. Swipe left to right B. Swipe right to left C. Swipe down D. Swipe up E. Double tap the screen F. Say “Siri, go to next item” G. Not available in VoiceOver for iOS

A

A. Swipe left to right

325
Q

When using VoiceOver in iOS, how do you activate a link or a button? A. Swipe left to right B. Swipe right to left C. Swipe down D. Swipe up E. Tap on the link or button F. Double tap on the link or button G. Double tap the screen anywhere H. Say “Siri, activate” I. Not available in VoiceOver for iOS

A

G. Double tap the screen anywhere

326
Q

When using VoiceOver in iOS, how do you pull up the rotor? A. Swipe left to right B. Place one finger on the screen and rotate it C. Place two fingers on the screen and rotate them D. Place your mouth on the screen and rotate it E. Swipe right to left F. Swipe down G. Swipe up H. Double tap the screen I. Say “Siri, show rotor” J. Not available in VoiceOver for iOS

A

C. Place two fingers on the screen and rotate them

327
Q

When using VoiceOver in iOS, how can you navigate to the next heading? A. Swipe left to right B. Set the rotor to navigate by headings, then swipe right C. Swipe right to left D. Set the rotor to navigate by headings, then swipe down E. Swipe up F. Double tap the screen G. Say “Siri, go to next heading” H. Not available in VoiceOver for iOS

A

D. Set the rotor to navigate by headings, then swipe down

328
Q

When using VoiceOver in iOS, how do you navigate by landmarks? A. Swipe left to right B. Set the rotor to navigate by landmarks, then swipe right C. Swipe right to left D. Set the rotor to navigate by landmarks, then swipe down E. Swipe up F. Double tap the screen G. Say “Siri, go to next landmark” H. Not available in VoiceOver for iOS

A

D. Set the rotor to navigate by landmarks, then swipe down

329
Q

Which browser is recommended for use with TalkBack? A. Chrome B. Opera C. Firefox D. Facebook E. Internet

A

A. Chrome

330
Q

When using TalkBack, how do you navigate to the next item? A. Swipe right B. Swipe left C. Swipe down D. Swipe up E. Double tap the screen F. Say “OK Google, go to next item” G. Not available in TalkBack

A

A. Swipe right

331
Q

When using TalkBack, how do you activate a link or a button? A. Swipe right B. Swipe left C. Swipe down D. Swipe up E. Tap on the link or button F. Double tap on the link or button G. Double tap the screen anywhere H. Say “OK Google, activate” I. Not available in TalkBack

A

G. Double tap the screen anywhere with 1 finger

332
Q

When using TalkBack, how do you pull up the TalkBack menu? A. Swipe right B. Place one finger on the screen and rotate it C. Place two fingers on the screen and rotate them D. Swipe down then right E. Swipe down then up F. Swipe left G. Swipe down H. Swipe up I. Double tap the screen J. Say “OK Google, show TalkBack menu” K. Not available in TalkBack

A

D. Swipe down then right

333
Q

When using TalkBack, how do you cycle through the available reading controls? A. Swipe right B. Place one finger on the screen and rotate it C. Place two fingers on the screen and rotate them D. Swipe down then right E. Swipe down then up F. Swipe left G. Swipe down H. Swipe up I. Double tap the screen J. Say “OK Google, next reading control” K. Not available in TalkBack

A

E. Swipe down then up

334
Q

Which browser is recommended for use with VoiceOver on macOS? A. Chrome B. Opera C. Firefox D. Safari

A

D. Safari

335
Q

When using VoiceOver in macOS, how do you navigate to the next item? A. N B. I C. Down arrow D. Up arrow E. Ctrl + Option + Command N F. Caps lock + down arrow G. Shift + down arrow H. Control + Option + right arrow I. Not available in VoiceOver in macOS

A

H. Control + Option + right arrow

336
Q

When using VoiceOver in macOS, which of the following methods can NOT be used to navigate by headings? A. Ctrl + Option + Command + H B. Caps lock + H C. Pull up the rotor, then use the left/right arrow keys to show the list of headings, then select the heading with the down arrow key

A

B. Caps lock + H

337
Q

When using VoiceOver in macOS, how do you navigate by landmarks? A. Ctrl + Option + R B. Ctrl + Option + Command + L C. Caps lock + L D. Pull up the rotor, then use the left/right arrow keys to show the list of landmarks, then select the heading with the down arrow key E. L F. Not available in VoiceOver in macOS

A

D. Pull up the rotor, then use the left/right arrow keys to show the list of landmarks, then select the heading with the down arrow key

338
Q

When using VoiceOver in macOS, how do you pull up the rotor? A. R B. Ctrl + Option + U C. Insert + F7 D. Ctrl + Shift F7 E. Caps lock + F3 F. Shift + F3 G. U H. Not available in VoiceOver in macOS

A

B. Ctrl + Option + U

339
Q

Which browser is recommended for use with Narrator? A. Chrome B. Opera C. Firefox D. Safari E. Edge F. Internet Explorer

A

E. Edge

340
Q

When using Narrator, how do you navigate to the next item? A. N B. I C. Down arrow D. Up arrow E. Ctrl + Option + Command N F. Caps lock + right arrow G. Caps lock + down arrow H. Tab I. Not available in Narrator

A

F. Caps lock + right arrow

341
Q

When using Narrator, how do you activate scan mode? A. Ctrl + Alt + S B. Ctrl + Shift S C. Caps lock + S D. Insert + S E. Space bar F. Caps lock plus space bar G. Not available in Narrator

A

F. Caps lock plus space bar

342
Q

When using Narrator, how do you navigate to the next heading (when in scan mode)? A. Ctrl + Alt + H B. Ctrl + Shift H C. Caps lock + H D. Insert + H E. H F. G G. Not available in Narrator

A

E. H

343
Q

When using Narrator, how do you navigate to the next landmark region (when in scan mode)? A. D B. Ctrl + Alt + L C. Ctrl + Shift D D. Caps lock + L E. Insert + R F. R G. Not available in Narrator

A

A. D

344
Q

When using Narrator, how do you go to the next cell in a table row? A. T B. Ctrl + Alt + C C. Ctrl + Alt + Right arrow D. Insert + T E. Ctrl + Shift T F. Caps lock + C G. Insert + R H. C I. Not available in Narrator

A

C. Ctrl + Alt + Right arrow

345
Q

True or False: Screen Reader will read the alt text of an image within a heading as part of the heading text.

A

True

346
Q

When using VoiceOver for IOS, how do you stop reading?

A

Tap with 2 fingers

347
Q

When using VoiceOver for IOS, how do start reading continuously (from this point on)

A

Swipe down with 2 fingers

348
Q

When using VoiceOver for IOS, how do you select an item?

A

Tap with 1 finger

349
Q

When using VoiceOver for IOS, how do you choose item or activate button?

A

Double-tap with 1 finger

350
Q

WCAG 2.1 updated 2.0 to be more inclusive of? A: users with cognitive or learning disabilities, B: users with low vision C: users with disabilities on mobile devices D: users with cognitive disabilities E: A,B,C

A

E: A,B,C A: users with cognitive or learning disabilities, B: users with low vision C: users with disabilities on mobile devices

351
Q

Which 17 new success criteria were appended to WCAG 2.0?

A

1.3.4 Orientation (AA) 1.3.5 Identify Input Purpose (AA) 1.3.6 Identify Purpose (AAA) 1.4.10 Reflow (AA) 1.4.11 Non-Text Contrast (AA) 1.4.12 Text Spacing (AA) 1.4.13 Content on Hover or Focus (AA) 2.1.4 Character Key Shortcuts (A) 2.2.6 Timeouts (AAA) 2.3.3 Animation from Interactions (AAA) 2.5.1 Pointer Gestures (A) 2.5.2 Pointer Cancellation (A) 2.5.3 Label in Name (A) 2.5.4 Motion Actuation (A) 2.5.5 Target Size (AAA) 2.5.6 Concurrent Input Mechanisms (AAA) 4.1.3 Status Messages (AA)

352
Q

What are the POUR Principles of WCAG 2.1

A

Perceivable Operable Unterstandable Robust

353
Q

What are the Guidlines of Principle “Perceivable”?

A

1.1. Text alternatives Provide text alternatives for any non-text content so that it can be changed into other forms people need, such as large print, braille, 1.2 Time based Media Provide alternatives for time-based media. 1.3 Adaptable Create content that can be presented in different ways (for example simpler layout) without losing information or structure. 1.4 Distinguishable (Unterscheidbar) Make it easier for users to see and hear content including separating foreground from background.

354
Q

What does the principle “Perceivable means?”

A

Information and user interface components must be presentable to users in ways they can perceive.

355
Q

What does the Principle “Operable” mean?

A

User interface components and navigation must be operable.

356
Q

What does the Principle “Understandable” mean?

A

Information and the operation of user interface must be understandable.

357
Q

What does the Principle “Robust” mean?

A

Content must be robust enough that it can be interpreted reliably by a wide variety of user agents, including assistive technologies.

358
Q

What are the Guidlines of Principle “Operable”?

A

2.1 Keyboard Accessible Make all functionality available from a keyboard. 2.2 Enough time Provide users enough time to read and use content. 2.3 Seizures and Physical Reactions Do not design content in a way that is known to cause seizures. 2.4 Navigable Provide ways to help users navigate, find content, and determine where they are. 2.5 Input Modalities Make it easier for users to operate functionality through various inputs beyond keyboard.

359
Q

What are the Guidlines of Principle “Understandable”?

A

3.1 Readable Make text content readable and understandable. 3.2 Predictable (Vorhersehbar) Make Web pages appear and operate in predictable ways. 3.3 Input Assistance Help users avoid and correct mistakes.

360
Q

What are the Guidlines of Principle “Robust”?

A

4.1 Compatible Maximize compatibility with current and future user agents, including assistive technologies.

361
Q

Which Guidline belongs not to the principle “Perceivable”? A: Time based Media B: Non Text Content C: Keyboard Accessibilty D: Predictable E: Adaptable

A

C: Keyboard Accessibilty D: Predictable

362
Q

Which Guidline belongs to the principle “Operable”? A: Compatible B: Input Modalities C: Enough Time D: Predictable

A

B: Input Modalities C: Enough Time

363
Q

How many Guidlines has WCAG 2.1? A: 12 B: 13 C: 15

A

B: 13

364
Q

How many Guidlines has WCAG 2.0? A: 12 B: 13 C: 15

A

A: 12 The Guidline 2.5 Input Modalities is new in WCAG 2.1

365
Q

What are the non-normative techniques for meeting WCAG 2.1 or 2.0?

A

A: Sufficient techniques (Ausreichende Techniken) -If the webcontent meets this techniques, it successfully meet the success criteria B: Failure techniques - If the web content fails any of these techniques, it does not meet the success criteria C: Advisory techniques (Beratungstechniken) - accessibilty best practice of meeting the success criteria

366
Q

What additional criteria were added to the principle “Perceivable” in WCAG 2.1?

A

Adaptable Criteria 1.3.4 Orientation (AA) 1.3.5 Identify input purposes (AA) 1.3.6 Identify purpose (AAA) Distinguishable criteria 1.4.10 Reflow (AA) 1.4.11 Non-text contrast (AA) 1.4.12Text spacing (AA) 1.4.13 Content on hover or focus (AA)

367
Q

When were the WCAG versions released?

A

WCAG 2.0 : 2008 WCAG 2.1 : 2018

368
Q

How many new success criteria were added from WCAG 2.0 to WCAG 2.1? A: 21 B: 17 C: 12

A

B: 17

369
Q

WCAG 2.1 provides 17 additional success criteria to address: A: mobile accessibility B: people with low vision C: people with cognitive and learning disabilities D: Blind people E: A,B, C F: A, C

A

E: A,B, C A: mobile accessibility B: people with low vision C: people with cognitive and learning disabilities

370
Q

What additional criteria were added to the principle “Operable” in WCAG 2.1?

A

Keyboard Accessible 2.1.4 Character Key Shortcuts (A) Enough Time 2.2.6 Timeouts (AAA) Seizures and Physical Reactions 2.3.3 Animation from Interactions (AAA) Input Modalities 2.5.1 Pointer Gestures (A) 2.5.2 Pointer Cancellation (A) 2.5.3 Label in Name (A) 2.5.4 Motion Actuation (A) 2.5.5 Target Size (AAA) 2.5.6 Concurrent Input Mechanisms (AAA)

371
Q

What additional criteria were added to the principle “Robust” in WCAG 2.1?

A

Compatible 4.1.3 Status Messages (AA)

372
Q

How should content and components be according to the perceivable guidlines?

A

The Perceivable guidelines say that content and components should: provide text alternatives (1.1) have specific considerations for time-based media (audio and video) (1.2) be adaptable through structure and formatting (1.3) be distinguishable in various contexts (1.4)

373
Q

How should your website be according to the operable guidlines?

A

The entire webpage should be: keyboard accessible (2.1) allow enough time for viewing (2.2) be considerate of people with seizures or other sensitive reactions (2.3) be navigable (2.4) consider (berücksichtigen) various modes of device input (2.5)

374
Q

How can we ensure that everyone can understand the services and information we have to offer? The Understandable guidelines say that your entire webpage should: A: be readable B: be predictable C: include input assistance for forms D: A,B, C E: be navigable

A

D: A,B, C The Understandable guidelines say that your entire webpage should: A: be readable B: be predictable C: include input assistance for forms

375
Q

The one Robust guideline says that your entire webpage should be: A: Compatible B: Adaptable C: Navigable

A

A: Compatible (4.1)

376
Q

Which new guideline was added to WCAG 2.1?

A

Input Modalities is the new guideline added to WCAG 2.1. Success criterias 2.5.1 Pointer Gestures (A) 2.5.2 Pointer Cancellation (A) 2.5.3 Label in Name (A) 2.5.4 Motion Actuation (A) 2.5.5 Target Size (AAA) 2.5.6 Concurrent Input Mechanisms (AAA)

377
Q

What techniques has the W3C published for meeting WCAG 2.0 and WCAG 2.1.? (They are not normative)

A

Sufficient techniques (Ausreichende): If the web content meets sufficient techniques, it successfully meets the success criterion. Failure techniques (Scheitern): If the web content fails any of these, it does not meet the success criterion. Advisory techniques (Empfohlene): Optional or conditional techniques may represent accessibility best practice or possible ways of meeting the success criterion

378
Q

Guidline 1.1

A

1.1 Text Alternative Provide text alternatives for any non-text content so that it can be changed into other forms people need, such as large print, braille, speech, symbols or simpler language. Principle: Perceivable

379
Q

Guidline 1.2

A

1.2 Time-based Media Provide alternatives for time-based media. Principle: Perceivable

380
Q

Guidline 1.3

A

1.3 Adaptable Create content that can be presented in different ways (for example simpler layout) without losing information or structure. Principle: Perceivable

381
Q

Guidline 1.4

A

1.4 Distinguishable Make it easier for users to see and hear content including separating foreground from background. Principle: Perceivable

382
Q

Guidline 2.1

A

2.1 Keyboard Accessible Make all functionality available from a keyboard. Principle: Operable

383
Q

Guidline 2.2

A

2.2 Enough Time Provide users enough time to read and use content. Principle: Operable

384
Q

Guidline 2.3

A

2.3 Seizures and Physical Reactions Do not design content in a way that is known to cause seizures or physical reactions. / Anfälle und physische Reaktionen Gestalten Sie Inhalte nicht auf Arten, von denen bekannt ist, dass sie zu Anfällen oder physischen Reaktionen führen. Principle: Operable

385
Q

Guidline 2.4

A

2.4 Navigable Provide ways to help users navigate, find content, and determine where they are. Principle: Operable

386
Q

Guidline 2.5

A

2.5 Input Modalities Make it easier for users to operate functionality through various inputs beyond keyboard. Principle: Operable

387
Q

Guidline 3.1

A

3.1 Readable Make text content readable and understandable. Principle: Understandable

388
Q

Guidline 3.2

A

3.2 Predictable Make Web pages appear and operate in predictable ways. / Vorhersehbar Sorgen Sie dafür, dass Webseiten vorhersehbar aussehen und funktionieren. Principle: Understandable

389
Q

Guidline 3.3

A

3.3 Input Assistance Help users avoid and correct mistakes. Principle: Understandable

390
Q

Guidline 4.1

A

4.1 Compatible Maximize compatibility with current and future user agents, including assistive technologies. Principle: Robust

391
Q

Name some Authoring Tools. Who is ATAG for?

A

HTML/web editors contentmanagement systems social media sites blog commenting features discussion forums user rating features Sharepoint Google Drive ATAG is primarily for developers of authoring tools, including the following types of authoring tools: web page authoring tools, for example, what-you-see-is-what-you-get (WYSIWYG) HTML editors software for generating websites, for example, content management systems (CMS) and learning management systems (LMS), courseware tools, content aggregators, no-code website builders software that converts documents to web content technologies, for example, word processors and other office document applications with Save as HTML or EPUB multimedia authoring tools websites that let users add content, such as blogs, wikis, photo sharing sites, online forums, and social networking sites

392
Q

What are the two parts of ATAG?

A

Part A : Make the authoring tool itself accessible. (Have an accessible user interface) Part B: Support the production of accessible content Part B has 4 principles, 11 guidelines, and 32 success criteria.

393
Q

How is the ATAG organized?

A

ATAG is organized in layers: Principles provide high-level organization for the guidelines. Guidelines provide the framework and objectives for the success criteria. Success criteria are the accessibility requirements, which are written as testable statements, at three levels: A, AA, AAA.

394
Q

What are the 4 Principle of Part A (Make the Authoring Tool itself accessible)

A

A.1. Authoring tool user interfaces follow applicable accessibility guidelines A.2. Editing-views are perceivable A.3. Editing-views are operable A.4. Editing-views are understandable

395
Q

What are the 4 Principle of Part B (Support the production of accessible content)

A

B.1. Fully automatic processes produce accessible content B.2. Authors are supported in producing accessible content B.3. Authors are supported in improving the accessibility of existing content B.4. Authoring tools promote and integrate their accessibility features

396
Q

Based on the Authoring Tool Accessibility Guidelines (ATAG), what must an authoring tool be? Interoperable Keyboard accessible Java based Standalone

A

Keyboard accessible

397
Q

What is an example of an ARIA property? Role-menuitem Aria-selected Aria-labelledby Aria-checked

A

Aria-labelledby

398
Q

Which of the following is one (1) of the three (3) areas of accessibility of the seventeen (17) new success criteria in WCAG 2.1 address? Internet of things Windows desktop features Mobility disabilities Cognitive and learning disabilities

A

Cognitive and learning disabilities

399
Q

Your webpage has a set of radiobuttons for preferences. If you select the last radiobutton “other” focus is automatically moved to a text input where you can provide more information. All individual radiobuttons are labeled and the group as a whole has an associated label. Which, if any, WCAG violation applies? 2.1.1 - Keyboard 3.2.2 - Change on input 2.4.3 - Focus order None - this pattern is fully WCAG 2.1 AA conforming

A

3.2.2 - Change on input

400
Q

Which of the following statement is true for the intentions of SC 1.4.12 - Text Spacing? Dictates that text and spacing must be set to one set of specified metrics. Prevents people from overriding author structure and formats. Allows user to increase spacing between lines and paragraphs. Displaying words and characters in overlapping patterns is required.

A

Allows user to increase spacing between lines and paragraphs.

401
Q

Of the browsers listed below, which one is the best choice for using NVDA for accessibility testing? Safari Firefox IE 11 Edge

A

Firefox

402
Q

Which option can a non-technical site owner implement to remove barriers for people using screen readers? Change outlines to zero Turn off auto-play on video players Apply a pointer gesture plug-in Display open captions

A

Turn off auto-play on video players

403
Q

Which accessibility testing methodology addresses how to approach a large enterprise audit? WCAG-UX ATAG WAI-ARIA WCAG-EM

A

WCAG-EM

404
Q

With these commands you can list all landmarks, except for: JAWS: Insert + F3 NVDA: Insert + F7 VoiceOver with Safari Not available Talkback- Local context menu (swipe up then right), then select landmarks VoiceOver with Safari (macOS) Control + Option + L

A

VoiceOver with Safari (macOS) Control + Option + L Should be Control + Option + U

405
Q

With these commands you can navigate from one landmark to the next, except for: JAWS : D NVDA: D VoiceOver (iOS): Use the rotor to select landmarks (twist two fingers on the screen to left or right), then swipe down with one finger Talkback: Local context menu (swipe up then right), then select landmarks VoiceOver (macOS) Not available D

A

JAWS : D should be JAWS: R

406
Q

With these commands you can navigate to the main landmarks, except for: JAWS : Q NVDA: Q 3: VoiceOver with Safari (iOS): Not available Talkback: Not available VoiceOver (macOS) Not available Narrator with Edge Caps Lock + N

A

NVDA: Q for NVDA it is not available

407
Q

With these commands you can list all Headings, except for: JAWS : Insert + F6 NVDA : Insert + F6 VoiceOver (iOS) Not available Talkback: Not available VoiceOver (macOS) Control + Option + U (to open rotor), then use left/right arrows to select headings

A

NVDA : Insert + F6 should Insert + F7

408
Q

With these commands you can navigate from one Heading to the next, except for: 1: JAWS: H 2: NVDA : H 3. VoiceOver (iOS): not available 4: Talkback: Local context menu (swipe up then right), then select headings 5: VoiceOver (macOS) Control + Option + Command + H

A

VoiceOver (iOS): not available Should: Use the rotor to select headings (twist two fingers on the screen to left or right), then swipe down with one finger

409
Q

With these commands you can navigate to the headings of a certain level, except for: JAWS : 1-6 NVDA: 1-6 VoiceOver(iOS): Not available Talkback: Not available VoiceOver (macOS): 1-6

A

VoiceOver (macOS): 1-6 for VoiceOver macOS it is not available

410
Q

With these commands you can list all links except for: JAWS : Insert + F6 2: NVDA : Insert + F7 VoiceOver (macOS) Control + Option + U (to open the Rotor), then use left or right arrows to select links VoiceOver: Not available 5: Talkback: Not available

A

JAWS : Insert + F6 should be Insert + F7

411
Q

With these commands you can navigate from one link to the nexts except for: Narrator: K JAWS: Not available NVDA: K VoiceOver (macOS): Control + Option + Command + K VoiceOver (iOS): Use the rotor to select links (twist two fingers on the screen to left or right), then swipe down with one finger Talkback: Local context menu (swipe up then right), then select links

A

VoiceOver (macOS): Control + Option + Command + K should be: Control + Option + Command + L

412
Q

With these commands you can navigate Navigate unvisited links only except for: Narrator with Edge: Not available JAWS with Chrome, Firefox, IE: U NVDA with Firefox, Chrome U VoiceOver with Safari (macOS) Control + Option + Command + U VoiceOver with Safari (iOS): Not available Talkback with Firefox Not available

A

VoiceOver with Safari (macOS) Control + Option + Command + U should: VoiceOver with Safari (macOS) Not available

413
Q

With these commands you can navigate visited links only except for: Narrator with Edge: V JAWS: V NVDA: V VoiceOver (macOS): Control + Option + Command + V VoiceOver (iOS): Not available Talkback: Not available

A

Narrator with Edge: V should: is not available

414
Q

With these commands you can show list of all tables except for: Narrator with Edge: Not available JAWS :Insert + F3 (to open Elements List), then select tables NVDA: Insert + F7 (to open Elements List), then select tables VoiceOver (macOS) Control + Option + U (to open rotor), then use left/right arrows to select tables VoiceOver with Safari (iOS): Not available 6: Talkback:Not available

A

NVDA: Insert + F7 (to open Elements List), then select tables Should: NVDA: Not available

415
Q

With these commands you can navigate from one table to the next, except for: 1: Narrator with Edge: T 2: JAWS: D 3. NVDA: T 4. VoiceOver with Safari (macOS) Control + Option + Command + T 5. VoiceOver with Safari (iOS): Use the rotor to select tables (twist two fingers on the screen to left or right), then swipe down with one finger 5: Talkback with Firefox Local context menu (swipe up then right), then select tables

A

2: JAWS: D should be JAWS: T

416
Q

With these commands you can navigate between cells within a table, except for: 1:Narrator with Edge Control + Alt + Arrow keys 2: JAWS with Chrome, Firefox, IE: Control + Alt + Arrow keys 3: NVDA with Firefox, Chrome Control + Alt + Arrow keys 4: VoiceOver with Safari (macOS) Control + Option + Arrow keys 5: VoiceOver with Safari (iOS): Swipe up/down/left/right 6: Talkback with Firefox Swipe up/down/left/right

A

Wrong: 6: Talkback with Firefox Swipe up/down/left/right Should: Talkback with Firefox Swipe left/right and explore by touch

417
Q

With these commands you can show all lists, except for: 1.Narrator :Not available 2. JAWS: Insert + Control + L 3. NVDA:Insert + Control + L 4. VoiceOver with Safari (macOS): Not available 5. VoiceOver with Safari (iOS): Not available 6. Talkback with Firefox Not available

A

Wrong: 3. NVDA:Insert + Control + L Should NVDA: Not available

418
Q

With these commands you can Navigate from One List to the Next, except for: Narrator: Not available JAWS: L NVDA: L VoiceOver with Safari (macOS): Control + Option + Command + L VoiceOver with Safari (iOS): Use the rotor to select lists (twist two fingers on the screen to left or right), then swipe down with one finger. Note: You may need to change your VoiceOver settings to allow lists to be available with this gesture. To change the settings, go to Settings > General > Accessibility > VoiceOver > Rotor. Talkback with Firefox Local context menu (swipe up then right), then select lists

A

Wrong: 4. VoiceOver with Safari (macOS): Control + Option + Command + L Should VoiceOver with Safari (macOS): Control + Option + Command + X

419
Q

With these commands you can Navigate from One List Item to the Next, except for: Narrator: Not available 2: JAWS:I 3: NVDA: I 4: VoiceOver (Mac): Control + Option + Command + I 5: VoiceOver: Not available Talkback:Not available

A

Wrong: 4: VoiceOver (Mac): Control + Option + Command + I Should: VoiceOver (Mac): Not available

420
Q

With these commands you can show list of all iframes, except for: Narrator: Not available JAWS : Insert + F3 (to open Elements List), then select frames NVDA : Insert + F3 VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select frames VoiceOver with Safari (iOS): Not available Talkback: Not available

A

wrong: 3. NVDA : Insert + F3 should 3. NVDA : Not available

421
Q

With these commands you can Navigate from One Iframe to the Next, except for: Narrator: Not available JAWS : M NVDA : M VoiceOver with Safari (macOS) Control + Option + Command M VoiceOver with Safari (iOS): Use the rotor to select frames (twist two fingers on the screen to left or right), then swipe down with one finger Talkback: Local context menu (swipe up then right), then select frames

A

wrong: 4. VoiceOver with Safari (macOS) Control + Option + Command M should: VoiceOver with Safari (macOS) Control + Option + Command F

422
Q

If a person types “vegetarian recipes” in a site search, which of the following is the best page title on the search result page? A. Search B. Search results C. Search results for “vegetarian recipes” D. Vegetarian recipes

A

C. Search results for “vegetarian recipes”

423
Q

True or false: On a so-called single-page application — in which AJAX is used to bring in new content without refreshing or loading the entire web page — any time that the URL changes, the page title should be updated accordingly.

A

TRUE

424
Q

Which of the following would be the best `` for a page describing the autocorrect features of a software product called “Tri-coil” by a company named “Bob’s Brilliant Software?” A. Autocorrect features in Tri-coil, by Bob’s Brilliant Software B. Bob’s Brilliant Software: Tri-coil - autocorrect features C. Features D. All of the above are equally good

A

A. Autocorrect features in Tri-coil, by Bob’s Brilliant Software

425
Q

What is the first thing screenreader user hears?

A

The page title

426
Q

What language does the screen reader read if no language is specified in the HTML document?

A

Users select a default language when installing and configuring their screen reader, so if no language is specified in the HTML document, the screen reader will read the document in the user’s default language.

427
Q

Identifying the language of a document or part of a document is important for users of: A. Voice recognition software B. Screen readers C. Screen magnifiers D. All of the above

A

B. Screen readers

428
Q

The correct language code for German web content is: A. lang=”en” B. lang=”German” C. lang=”german” D. lang=”deutch” E. lang=”de” F. lang=”d”

A

E. lang=”de”

429
Q

The correct location to identify the main language of an entire page is: A. On the element B. On the element C. On the element D. In aelement in the of the document E. On every block level element in the content

A

B. On the `` element

430
Q

If the user has the screen reader language set to French and a web page is written in English but does NOT specify the language of the document in the markup, how will the screen reader read the text? A. It will translate the text to French B. It will notify the user that there is a mismatch in languages C. It will read the English words using French pronunciation rules D. It will detect the language automatically and read the text with the correct pronunciation E. It will cause the screen reader to turn off

A

C. It will read the English words using French pronunciation rules

431
Q

All of the following are valid ARIA landmark roles except: A. banner B. navigation C. main D. end E. search

A

D. end

432
Q

A page with 47 landmarks: A. Shows a high level of dedication to accessibility best practices B. Probably has too many landmarks to be optimally useful to screen reader users C. Demonstrates the popularity of the web page D. Is using deprecated markup, and should be updated with more modern methods

A

B. Probably has too many landmarks to be optimally useful to screen reader users

433
Q

If there are multiple navigation landmarks in the same page: A. Each landmark should have its own unique title attribute B. Screen readers will ignore all but the first one C. The markup is invalid: there should be only one navigation landmark per page D. The screen reader is likely to crash, especially older versions E. Each landmark should have its own aria-label or aria-labelledby attribute

A

E. Each landmark should have its own aria-label or aria-labelledby attribute

434
Q

Which of the following does NOT represent best practice, in terms of creating a structured outline of the content with headings? A. <h1> <h2> <h2> <h3> <h4> <h2> B. <h1> <h2> <h2> <h2> <h3> <h4> C. <h1> <h3> <h4> <h3> <h4> <h3> D. <h1> <h2> </h2></h1></h3></h4></h3></h4></h3></h1></h4></h3></h2></h2></h2></h1></h2></h4></h3></h2></h2></h1>

A

C. <h1> <h3> <h4> <h3> <h4> <h3> </h3></h4></h3></h4></h3></h1>

435
Q

If the heading level 1 (<h1>) at the beginning of the main content says “How to hang ten on a surfboard,” the most appropriate `` for the page from among the options below would be: A. How to ride a surfboard B. Surfing tutorial C. Summers in California D. How to hang ten on a surfboard E. An article describing how to hang ten on a surfboard, describing the techniques and circumstances in which it is possible to do it</h1>

A

D. How to hang ten on a surfboard

436
Q

Which of the following will be recognized as a valid heading by screen readers? A. <h1></h1> B. Legal disclaimer C. <div>The secrets beneath the ocean’s surface</div> D. <p class="heading level2" style="font-size:200%;font-weight:bold;">Understand yourself</p>

A

C. <div>The secrets beneath the ocean’s surface</div>

437
Q

True or False: WCAG 2.0 level double A (AA) requires headings to be in a valid hierarchy under all circumstances. A heading 4 (<h4>) cannot directly follow a heading 2 (<h2>), for example. The next subheading under the heading 2 (<h2>) MUST be a heading 3 (<h3>).</h3></h2></h2></h4>

A

FALSE

438
Q

True or False: Screen readers will read the alt text of an image within a heading as part of the heading text.

A

TRUE

439
Q

What is the official character limit within a heading? A. 256 characters B. 140 characters C. 1024 characters D. It depends on the level of the heading E. There is no official limit

A

E. There is no official limit

440
Q

All of the following statements are true, except: A. Users should be warned if a link opens a new window. B. Link text should include words like “link” or “click” so screen reader users know it is a link. C. For images used as links, the alternative text for the image functions as link text for screen reader users. D. Links with the same text should go to the same place.

A

B. Link text should include words like “link” or “click” so screen reader users know it is a link.

441
Q

True or false: Links must be visually distinguishable from the surrounding non-link text

A

TRUE

442
Q

True or false: Links can be the same color as the surrounding non-link text as long as an underline appears on mouse hover and on keyboard focus.

A

FALSE

443
Q

The main navigation menu should: A. Be consistently located B. Be consistently ordered C. Be positioned horizontally D. Include drop-down submenus E. A and B F. All of the above

A

E. A and B

444
Q

True or false: Links on the same page that go to the same destination should have the same text within the link.

A

TRUE

445
Q

The correct way to designate a navigation list as a navigation landmark is: A. Wrap the navigation list in a container or in a container marked with role=”navigation” B. Set role=”navigation” on every link in the navigation list, or wrap each link in elements C. There is no need to add anything to the markup. Screen readers automatically detect navigation lists and announce them to users D. Wrap the navigation list in a container

A

A. Wrap the navigation list in a `` container or in a container marked with role=”navigation”

446
Q

True or false: Screen readers can identify the current location within a navigation menu based on the visual styles

A

FALSE

447
Q

All of the following are true about skip links, except: A. Must be placed just before the main navigation menu B. Must be accessible to keyboard-only users C. Must be accessible to screen reader users D. Must become visible upon receiving focus, if hidden

A

A. Must be placed just before the main navigation menu

448
Q

True or false: Sighted keyboard users can navigate by headings, landmarks, and other semantic features, just like blind screen reader users.

A

FALSE

449
Q

Which of the following methods could be used to mark the current location within a paginated view? (Select all that apply) A. hidden text B. aria-label C. aria-labelledby D. aria-describedby E. All of the above

A

E. All of the above

450
Q

What SHOULD be the first focusable element on the page.

A

A “skip navigation link”

451
Q

Where should the “skip link” be placed in the DOM? A: in the body tag B: in the main tag C: before the main navigation tag D: A und C

A

D. A “skip navigation link” should be placed at the very beginning of the document, right after the opening `` tag

452
Q

True or False: Layout tables are not permitted by WCAG standards.

A

FALSE

453
Q

The accessible name for a data table should be contained in what element? A. B. C. D. E. `` F. The first row of the table (the columns of that row should be merged into a single cell)

A

C. ``

454
Q

The correct way to code a table cell that is a column header cell is: A. B. C. D.

A

C. ``

455
Q

In a table with two header cells in the first row (“Male” and “Female”), and with 5 header cells under each of them, the header cells in the first row should be marked as: A. B. C. D.

A

C. ``

456
Q

In complex tables, each data cell must be explicitly associated with each corresponding header cell by which method? A. scope + header B. id + header C. id + scope D. Merging table cells

A

B. id + header

457
Q

True or false: Complex tables with merged cells are easy for screen readers to understand, as long as the table has all the necessary accessible markup.

A

FALSE

458
Q

True or false: Screen readers will announce the number of items in a bulleted list if the list is marked up properly.

A

TRUE

459
Q

True or false: Screen readers do not read nested lists (lists within lists) properly.

A

FALSE

460
Q

True or false: Screen readers will recognize the following code as a list: <p>1. First item<br>2. Second item`<br>3. Third item</p>`

A

FALSE

461
Q

What do iframes require so that screen reader users can find them?

A

From an accessibility standpoint, iframes require titles, so that screen reader users can find them and navigate to them

462
Q

One of the main ways to make an accessible is to add: A. a title attribute B. an alt attribute C. a name attribute D. a element E. tabindex=”0” F. a `` element

A

A. a title attribute

463
Q

What does the JAWS screen reader read with regard to the name/label of an ? A. The name attribute on the element B. The title attribute on the element C. The element of the page within the iframe D. The title attribute of the page within the iframe

A

C. The `` element of the page within the iframe

464
Q

If a page has 3 headings, and an , and if the page within the has 2 headings, how many headings total will show up in the screen reader’s list of headings on the parent page? A. 3 B. 5 C. 7 D. 13

A

B. 5

465
Q

If an contains only JavaScript that is not meant to be read by the user, what is the best way to address this in terms of accessibility? A. Hide it from screen reader users with aria-hidden=”true” B. Hide it with display

A

A. Hide it from screen reader users with aria-hidden=”true”

466
Q

Which of the following elements will most screen readers announce to users (in terms of the semantic meaning of the element itself)? A. q B. del C. ins D. mark E. code F. pre G. B and C H. D and E I. All of the above J. None of the above

A

J. None of the above

467
Q

If you want to highlight text on a web page, when is it necessary to add additional text so that screen reader users know the text is important? A. Always B. Never C. When the emphasis in the highlighting changes the meaning of the text

A

C. When the emphasis in the highlighting changes the meaning of the text

468
Q

Screen readers announce emphasized text when it is marked with: A. b B. i C. em D. strong E. mark F. The word “Important: “ (or similar) in front of the emphasized text G. All of the above H. None of the above

A

F. The word “Important: “ (or similar) in front of the emphasized text

469
Q

What will a screen reader say when it comes across code marked as follows? <p>Twin mattress <del>$300</del> <ins>$250</ins>!</p> A. Twin mattress $300 $250! B. Twin mattress deleted $300, inserted $250! C. Twin mattress was $300, now $250!

A

A. Twin mattress $300 $250!

470
Q

Which of the following is a recommended way to emphasize text accessibly for screen reader users? A. Add a graphic element with “Important” as its alt text B. Use all capital letters C. Increase the font size D. Add class=”important” to the text E. Style the text using <em></em>

A

A. Add a graphic element with “Important” as its alt text

471
Q

True or False: The concept of robust technology compatibility is to support compatibility of web content with current and future user agents — especially assistive technologies.

A

TRUE

472
Q

Which of the following is NOT considered an aspect of well-formed markup? A. Elements are properly nested. B. Content has been spell-checked. C. All id attributes are unique. D. Elements do not contain duplicate attributes.

A

B. Content has been spell-checked.

473
Q

Which of the following statement(s) about deprecated HTML elements or attributes is/are FALSE? A. They have been replaced by newer constructs such as CSS. B. They are typically structural in nature. C. They may cause users to be unable to override the deprecated items with their own style sheets. D. They are disallowed by WCAG 2.0 standards. E. They are outdated or obsolete. F. Both B & D

A

F. Both B & D

474
Q

All of the following HTML elements are deprecated (veraltet) in HTML5 except: A. B. C. D. E. All of the above are deprecated.

A

E. All of the above are deprecated.

475
Q

What is the official character limit within a heading? A: 256 Characters B: 140 Characters C: 1024 Characters D: It depends on the level of the heading E: There is no official limit

A

E: There is no official limit

476
Q

The List shows HTML5 elements. What are the corresponding ARIA role?


A

N/A

477
Q

Which landmarks should not be used more than once?

A

ARIA role banner, main, and contentinfo.

478
Q

Where should a “skip navigation link” be placed? A: at the beginning of the document B: in the Header element C: after the opening body D: A und C

A

D A “skip navigation link” should be placed at the very beginning of the document, right after the opening ``.