Web Accessibility Testing: Screen Readers Flashcards

1
Q

When testing your code what should you look for?

A
  • Elements should have complete start and end tags
  • Elements should be nested according to their specifications
  • Elements should not contain duplicate attributes
  • Any IDs should be unique, except where the specifications allow these features.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What should you include in development test routine?

A
  • Keyboard testing. Do all the functionalities work with just a keyboard only?
  • Automated accessibility checks in the browser
  • Zoom in and out with your browser.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are some additional steps that can be taken when doing accessibility testing?

A
  • Check the navigation and information order with a screen reader
  • Try focusing and try activating links and buttons with voice recognition software
  • Consider using automated checks before a commit, using a linter.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

When doing keyboard testing what should you test for?

A
  • Is the first tab a skip link to the main content, and does that work?
  • Is the tab order sequential, logical, and as expected?
  • Can you see where you are while tabbing through the website? Is there a clear visual change when you focus on a link, button or input?
  • The menu: can you access the menu items, can you open a hamburger menu, tab around and close it again?
  • Can you operate radio buttons, checkboxes, and dropdown selects in a form?
  • Can you operate the next and previous buttons in a carousel?
  • Can you open and close items in an accordion?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What keyboard testing should be done for a modal?

A
  • If a modal opens, can you access links on it? Does the modal get keyboard focus, or does the focus stay on the page itself?
  • Can you access the close button (often an X) and close the modal?
  • Can you close the modal with the Escape key?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are some automated testing tools?

A

WAVE, AXE, HTML_CodeSniffer, Lighthouse

https://www.w3.org/WAI/test-evaluate/tools/list/

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

What tests do you need to perform for zooming?

A
  • The first one: open your site Chrome and set your window to a width of 1280 pixels and zoom in up to 400%.
  • The second test is to zoom in for only text. Open your site in FireFox, set zoom to text only and zoom in up to 200%. Can you read the text and use the functionality?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What should you test for when you are doing screen reading testing?

A
  • Check the content story: does it make sense reading from the top down?
  • Check the headings list: does it represent the content and is all related content below the heading in the DOM?
  • Check the link list: do links texts make sense?
  • Check whether dynamic changes are announced.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Yes! Your frontend code is parsing. This means:

A. The syntax of the frontend code is error-free
B. The frontend code is fully accessible

A

A. The syntax of the frontend code is error-free

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

IDs of form controls should be unique on a web page.

A. True
B. False

A

A. True

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

The steps required for accessibility testing are:

A. Keyboard testing
B. Automated accessibility checks in the browser
C. Zooming in and out in your browser
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
12
Q

When opening a modal (pop-up), the keyboard focus can be put on …
Check all that apply.

A. The close button
B. The first input field

C. The button for opening the modal
D. The top of the page

A

B. The first input field


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

What can you check with a screen reader?
Check all that apply.

A. Whether the spelling of my content is correct
B. Whether link texts make sense
C. Visual focus styles
D. Whether everything is understandable if you read from the top down
E. Feedback on dynamic changes

A

A. Whether the spelling of my content is correct
D. Whether everything is understandable if you read from the top down
E. Feedback on dynamic changes

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

What can you test with voice recognition software on a web page?

A. Whether links and buttons are focusable
B. Whether I can ask questions with my voice and get answers from the software

A

A. Whether links and buttons are focusable

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

With automated test tools I can find all accessibility issues on a web page.

A. True
B. False

A

B. False

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

What information does an accessibility API convey to screenreaders?

A

The operating system has an accessibility API which conveys information about the names, roles, values, and structure of web content, plus events that should be announced to users.

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

Who uses screen readers?

A
  • Blind
    Blind users typically listen to the audio output of screen readers.
  • Deafblind
    People who have both visual and auditory disabilities may use a screen reader with a refreshable braille output device, to allow them to feel the braille characters with their fingers.
  • Low vision
    People with low vision typically use screen magnification software to make it easier to read. For some people, the magnification is not enough, so they supplement the magnification with a screen reader. This allows them to both see and hear the web content.
  • Reading disabilities
    People with reading disabilities may find it easier to listen to content read out loud to them, rather than read it with their eyes.
  • Cognitive disabilities
    People with various kinds of cognitive disabilities may also find it easier to understand spoken words rather than written words.
  • Eyes-free or hands-free environments
    People with or without disabilities may use screen readers when reading things in eyes-free or hands-free environments.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Why do you also need test with screen readers? What will automated testing tools

A
  • Quality and accuracy: Inaccurate or poor-quality alt text is no better than missing alt text. Automated tools can only tell you whether an image has alt text. They cannot tell you whether the alt text is accurate or meaningful. The same is true of text labels for form elements, captions on tables, headers on data tables, and so on.
  • Keyboard focus patterns: Automated tools cannot reliably determine where the keyboard focus should be at any given point in time. When a user clicks on a button, the focus should go to a logical destination — such as a dialog or error message — but it is impossible for an automated tool to know what the appropriate focus location is.
  • Custom widgets: With custom widgets, like dialogs, carousels, and accordion menus, there is no way for an automated tool to detect all the possible ways of creating them incorrectly, especially when it comes to keyboard interaction patterns. At best, an automated tool might be able to identify when a widget is created correctly, by comparing the names, roles, values, and keyboard focus patterns of the widget with the ARIA 1.1 authoring practices opens in a new window[note] document. Even that is tricky.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What are the most common screen readers and browser pairs?

A

Desktop screen readers:
- JAWS with Chrome
- NVDA with Firefox
- NVDA with Chrome
- JAWS with IE
- VoiceOver with Safari (macOS)
- Narrator with Edge

Mobile screen readers:
- VoiceOver with Safari (iOS)
- TalkBack with Chrome (Android)

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

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

A

False:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
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

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

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

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
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. JAWs, NVDA, and WIndow-eyes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
What are common keystrokes that are used with Narrator?
- Turn on/off- Windows key + Control + Enter - Stop talking - Control - Next item- Caps lock + Right arrow - Previous item- Caps lock + Left arrow - Next focusable item - Tab - Previous focusable item- Shift + Tab - Toggle scan mode on/off- Caps lock + Space bar - Next heading- H (in scan mode) - Previous heading- Shift + H (in scan mode) - Next landmark/region - D (in scan mode) - Previous landmark/region - Shift + D (in scan mode) - Navigate table cells- Control + Alt + Arrow keys - Activate a link - Enter - Activate a button- Enter or Space bar - Open and navigate a select list- Alt + Down arrow, then Down/Up arrow
26
How do screen readers allow user to navigate a web page?
Screen readers allow users to navigate by other elements, such as: - Landmarks (sections of the overall design, including the header, navigation, main content, and footer) - Headings - Links - Tables - Form elements - Graphics - List items - Iframes - And several other categories of semantic elements
27
What CSS styles will screen readers ignore?
Screen reader users will generally NOT be aware of any of the following: - Color - Background color - Background images - Font size - Font style - Bold - Italic - All capitals (unless the user listens to the word character by character) - Visual position - Visual spacing between items - Columns or floating containers
28
How could convey to meaning to a screen reader rather than just using CSS styles, such as in relation to background color to highlight text?
If you are using CSS to convey meaning — such as using a background color to highlight text — be sure to supplement the CSS with actual text that conveys the same meaning. For example, you could prefix the highlighted text with the word "Important:".
29
What does CSS display:none do?
One CSS property that screen readers do pay attention to is display:none. Screen readers ignore everything marked as display:none, and do not let users access it.
30
What is a list of symbols that are supported by screenreaders?
Here is a list of some of the safest symbols to use (though screen reader support may still not be universal): @ (the at symbol) & (ampersand, written either as & or & in the markup) / (slash) © (copyright, written as ©) ® (registered, written as ®) ™ (trademark, written as ™) ¶ (paragraph, written as ¶) * (bullet, written as •) $ (dollar) € (Euro, written as €) £ (British pound, written as £) ¥ (Yen, written as ¥) % (percent) ½ (one half, written as ½) ¼ (one fourth, written as ¼) ¾ (three fourths, written as ¾) ° (degrees, written as °)
31
What is the best practice for semantic markup for abbreviations
You can use the element to mark abbreviations and acronyms. SCUBA
32
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
E. Keyboard
33
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. Yes B. No
B. No
34
True or False: In their default settings, most screen readers announce every comma and every period.
False
35
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.
False: It depends on the screen reader how some things are announced.
36
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
H. None of the above
37
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
C. There may be a delay between the time when an AJAX load event is complete and when the virtual buffer is updated
38
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
B. The DOM (the markup after it has been processed by the browser)
39
True or false: All browsers use the same accessibility API.
False
40
What is the purpose of the page title for screen readers?
The page , which is generally displayed in the tab of a browser, is a quick way to learn about the content on the web page. </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":41,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591124752},"returnTo":"/packs/22570317/subscribe"}' id='card-591124752'> <div class='header'> 41 </div> <div class='card-face question'> <div class='question-content'> How do you list headings in sceen readers? </div> </div> <div class='card-face answer'> <div class='answer-content'> - JAWS with Chrome, Edge, Firefox, IE - Insert + F6 - NVDA with Firefox, Chrome, Edge - Insert + F7 (to open Elements List), then select Headings - VoiceOver with Safari (iOS) Not available - TalkBack with Chrome, Firefox Not available - VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select headings - Narrator with Edge Caps Lock + F6 </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":42,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591126045},"returnTo":"/packs/22570317/subscribe"}' id='card-591126045'> <div class='header'> 42 </div> <div class='card-face question'> <div class='question-content'> How do you navigate from one heading to another with screen readers? </div> </div> <div class='card-face answer'> <div class='answer-content'> Navigate from one heading to the next JAWS with Chrome, Edge, Firefox, IE H NVDA with Firefox, Chrome, Edge H VoiceOver with Safari (iOS) Use the rotor to select headings (twist two fingers on the screen to left or right), then swipe down with one finger TalkBack with Chrome, Firefox Swipe up then down (or swipe down then up) repeatedly to cycle through the reading controls until "Headings" is selected, then swipe down VoiceOver with Safari (macOS) Control + Option + Command + H Narrator with Edge H (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":43,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591126325},"returnTo":"/packs/22570317/subscribe"}' id='card-591126325'> <div class='header'> 43 </div> <div class='card-face question'> <div class='question-content'> how do you navigate to headings of a certain level? </div> </div> <div class='card-face answer'> <div class='answer-content'> Navigate to headings of a certain level JAWS with Chrome, Edge, Firefox, IE 1-6 NVDA with Firefox, Chrome, Edge 1-6 VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge 1-6 (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":44,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591126609},"returnTo":"/packs/22570317/subscribe"}' id='card-591126609'> <div class='header'> 44 </div> <div class='card-face question'> <div class='question-content'> How do you list all landmarks in screen readers? </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Insert + F3 (to open Elements List), then select Landmarks NVDA with Firefox, Chrome, Edge Insert + F7 (to open Elements List), then select Landmarks VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select Landmarks Narrator with Edge Caps Lock + F5 </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":45,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591127246},"returnTo":"/packs/22570317/subscribe"}' id='card-591127246'> <div class='header'> 45 </div> <div class='card-face question'> <div class='question-content'> How do you navigate from one landmark to the next? </div> </div> <div class='card-face answer'> <div class='answer-content'> Navigate from One Landmark to the Next JAWS with Chrome, Edge, Firefox, IE JAWS 16 and above: R JAWS 15 and below: ; (semi-colon) NVDA with Firefox, Chrome, Edge D VoiceOver with Safari (iOS) Use the rotor to select landmarks (twist two fingers on the screen to left or right), then swipe down with one finger TalkBack with Chrome, Firefox Swipe up then down (or swipe down then up) repeatedly to cycle through the reading controls until "Landmarks" is selected, then swipe down VoiceOver with Safari (macOS) Not available Narrator with Edge D (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":46,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591127606},"returnTo":"/packs/22570317/subscribe"}' id='card-591127606'> <div class='header'> 46 </div> <div class='card-face question'> <div class='question-content'> How do you navigate to main content landmark with screen readers? </div> </div> <div class='card-face answer'> <div class='answer-content'> Navigate to the main content landmark JAWS with Chrome, Edge, Firefox, IE Q NVDA with Firefox, Chrome, Edge Not available VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Caps Lock + N </div> </div> </div> <div class='flashcard-row thin-card' data='{"aSoundUrl":null,"cardIsBlurrable":false,"number":47,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591128119},"returnTo":"/packs/22570317/subscribe"}' id='card-591128119'> <div class='header'> 47 </div> <div class='card-face question'> <div class='question-content'> How do you list all list with a screen reader? </div> </div> <div class='card-face answer'> <div class='answer-content'> List all list JAWS with Chrome, Edge, Firefox, IE Insert + Control + L NVDA with Firefox, Chrome, Edge Not available VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":48,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591129274},"returnTo":"/packs/22570317/subscribe"}' id='card-591129274'> <div class='header'> 48 </div> <div class='card-face question'> <div class='question-content'> How do you navigate from one list to another with a screen reader? </div> </div> <div class='card-face answer'> <div class='answer-content'> Navigate from one list to the next JAWS with Chrome, Edge, Firefox, IE L NVDA with Firefox, Chrome, Edge 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 Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Alt + Command + X Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":49,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591130267},"returnTo":"/packs/22570317/subscribe"}' id='card-591130267'> <div class='header'> 49 </div> <div class='card-face question'> <div class='question-content'> How do you navigate from one list item to the next with a screen reader? </div> </div> <div class='card-face answer'> <div class='answer-content'> Navigate from one list item to the next JAWS with Chrome, Edge, Firefox, IE I NVDA with Firefox, Chrome, Edge I VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":50,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591131885},"returnTo":"/packs/22570317/subscribe"}' id='card-591131885'> <div class='header'> 50 </div> <div class='card-face question'> <div class='question-content'> Read continuously from this point </div> </div> <div class='card-face answer'> <div class='answer-content'> Read continuously from this point JAWS with Chrome, Edge, Firefox, IE Insert + Down Arrow NVDA with Firefox, Chrome, Edge Insert + Down Arrow or Numpad Plus VoiceOver with Safari (iOS) Two finger swipe down TalkBack with Chrome, Firefox Open the TalkBack menu by swiping down then right or up then right, then repeatedly swipe right until you reach "Read from next item," then select it by double-tapping. VoiceOver with Safari (macOS) Control + Option + A Narrator with Edge Caps Lock + Down Arrow or Caps Lock + Control + R </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":51,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591132273},"returnTo":"/packs/22570317/subscribe"}' id='card-591132273'> <div class='header'> 51 </div> <div class='card-face question'> <div class='question-content'> Read next or previous line </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Next: Down Arrow Previous: Up Arrow NVDA with Firefox, Chrome, Edge Next: Down Arrow or Numpad 9, Previous: Up Arrow or Numpad 7 VoiceOver with Safari (iOS) Next: Rotor, swipe down Previous: Rotor, swipe up TalkBack with Chrome, Firefox Swipe up then down (or swipe down then up) repeatedly to cycle through the reading controls until "Lines" is selected. Then Next: Swipe down Previous: Swipe up VoiceOver with Safari (macOS) Next: Control + Option + Right Arrow (Read next item) Previous: Control + Option + Left Arrow (Read previous item) Narrator with Edge Next: Control + Down Arrow Previous: Control + Up Arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":52,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591133180},"returnTo":"/packs/22570317/subscribe"}' id='card-591133180'> <div class='header'> 52 </div> <div class='card-face question'> <div class='question-content'> Read next or previous sentence </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Next: Alt + Down Arrow Previous: Alt + Up Arrow NVDA with Firefox, Chrome, Edge Next: Alt + Down Arrow Previous: Alt + Up Arrow VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + S (Read sentence) Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":53,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591133316},"returnTo":"/packs/22570317/subscribe"}' id='card-591133316'> <div class='header'> 53 </div> <div class='card-face question'> <div class='question-content'> List all graphics </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Insert + Control + G NVDA with Firefox, Chrome, Edge Not available VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select Images Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":54,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591133914},"returnTo":"/packs/22570317/subscribe"}' id='card-591133914'> <div class='header'> 54 </div> <div class='card-face question'> <div class='question-content'> Navigate from one graphic to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE G NVDA with Firefox, Chrome, Edge G VoiceOver with Safari (iOS) Rotate two fingers on the screen (like turning a dial) to open the rotor, locate Images, then swipe right TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + Command + G Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":55,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591134224},"returnTo":"/packs/22570317/subscribe"}' id='card-591134224'> <div class='header'> 55 </div> <div class='card-face question'> <div class='question-content'> List all links </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Insert + F7 NVDA with Firefox, Chrome, Edge Insert + F7 (to show Elements List), then choose links VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + U (to open the Rotor), then use left or right arrows to select links Narrator with Edge Caps Lock + F7 </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":56,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591134992},"returnTo":"/packs/22570317/subscribe"}' id='card-591134992'> <div class='header'> 56 </div> <div class='card-face question'> <div class='question-content'> Navigate from one link to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Not available NVDA with Firefox, Chrome, Edge K VoiceOver with Safari (iOS) Use the rotor to select links (twist to fingers on the screen to left or right), then swipe down with one finger TalkBack with Chrome, Firefox Swipe up then down (or swipe down then up) repeatedly to cycle through the reading controls until "Links" is selected, then swipe down VoiceOver with Safari (macOS) Control + Option + Command + L Narrator with Edge K (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":57,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591135471},"returnTo":"/packs/22570317/subscribe"}' id='card-591135471'> <div class='header'> 57 </div> <div class='card-face question'> <div class='question-content'> Navigate unvisited links only </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE U NVDA with Firefox, Chrome, Edge U VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":58,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591135481},"returnTo":"/packs/22570317/subscribe"}' id='card-591135481'> <div class='header'> 58 </div> <div class='card-face question'> <div class='question-content'> Navigate visited links only </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE V NVDA with Firefox, Chrome, Edge V VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + Command + V Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":59,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591136511},"returnTo":"/packs/22570317/subscribe"}' id='card-591136511'> <div class='header'> 59 </div> <div class='card-face question'> <div class='question-content'> Show list of all tables </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Insert + F3 (to open Elements List), then select tables NVDA with Firefox, Chrome, Edge Not available VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select tables Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":60,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591136705},"returnTo":"/packs/22570317/subscribe"}' id='card-591136705'> <div class='header'> 60 </div> <div class='card-face question'> <div class='question-content'> Navigate from one table to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE T NVDA with Firefox, Chrome, Edge T 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 TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + Command + T Narrator with Edge T (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":61,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591137122},"returnTo":"/packs/22570317/subscribe"}' id='card-591137122'> <div class='header'> 61 </div> <div class='card-face question'> <div class='question-content'> Navigate between cells within a table </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Control + Alt + Arrow keys NVDA with Firefox, Chrome, Edge Control + Alt + Arrow keys VoiceOver with Safari (iOS) Swipe up/down/left/right TalkBack with Chrome, Firefox Swipe left/right and explore by touch VoiceOver with Safari (macOS) Control + Option + Arrow keys Narrator with Edge Control + Alt + Arrow keys </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":62,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591137303},"returnTo":"/packs/22570317/subscribe"}' id='card-591137303'> <div class='header'> 62 </div> <div class='card-face question'> <div class='question-content'> Search within a web page </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Control + F NVDA with Firefox, Chrome, Edge Control + F VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Swipe left then down, or use browser's "Find in page" function VoiceOver with Safari (macOS) Control + Option + F Narrator with Edge Control + F </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":63,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591137663},"returnTo":"/packs/22570317/subscribe"}' id='card-591137663'> <div class='header'> 63 </div> <div class='card-face question'> <div class='question-content'> Enter and exit forms mode </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Enter: Enter key (when focus is on a form field) Exit: Numpad Plus NVDA with Firefox, Chrome, Edge Enter: Insert + Space Bar Exit: (repeat) Insert + Space Bar VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Not available </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":64,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591138033},"returnTo":"/packs/22570317/subscribe"}' id='card-591138033'> <div class='header'> 64 </div> <div class='card-face question'> <div class='question-content'> List all form elements </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Insert + F5 NVDA with Firefox, Chrome, Edge Insert + F7 (to open Elements List), then select Form fields VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Caps Lock + [F5, F6, or F7], then Tab (twice) to the Scoping drop-down list, then Alt + Down Arrow to open the list, then select Form fields </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":65,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591138635},"returnTo":"/packs/22570317/subscribe"}' id='card-591138635'> <div class='header'> 65 </div> <div class='card-face question'> <div class='question-content'> Navigate from one form element to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Insert + F5 NVDA with Firefox, Chrome, Edge Insert + F7 (to open Elements List), then select Form fields VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Caps Lock + [F5, F6, or F7], then Tab (twice) to the Scoping drop-down list, then Alt + Down Arrow to open the list, then select Form fields </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":66,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591138961},"returnTo":"/packs/22570317/subscribe"}' id='card-591138961'> <div class='header'> 66 </div> <div class='card-face question'> <div class='question-content'> Select or deselect a form element </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Space Bar or Enter NVDA with Firefox, Chrome, Edge Space Bar VoiceOver with Safari (iOS) Double tap TalkBack with Chrome, Firefox Double tap VoiceOver with Safari (macOS) Control + Option + Return Narrator with Edge Space Bar </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":67,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591139476},"returnTo":"/packs/22570317/subscribe"}' id='card-591139476'> <div class='header'> 67 </div> <div class='card-face question'> <div class='question-content'> Navigate from one button to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Space Bar or Enter NVDA with Firefox, Chrome, Edge Space Bar VoiceOver with Safari (iOS) Double tap TalkBack with Chrome, Firefox Double tap VoiceOver with Safari (macOS) Control + Option + Return Narrator with Edge Space Bar </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":68,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591139643},"returnTo":"/packs/22570317/subscribe"}' id='card-591139643'> <div class='header'> 68 </div> <div class='card-face question'> <div class='question-content'> Navigate from one button to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE B NVDA with Firefox, Chrome, Edge B VoiceOver with Safari (iOS) Rotor, swipe right TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge B (in Scan Mode only) Method 6: Navigate from one checkbox to the </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":69,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591140053},"returnTo":"/packs/22570317/subscribe"}' id='card-591140053'> <div class='header'> 69 </div> <div class='card-face question'> <div class='question-content'> Navigate from one checkbox to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE X NVDA with Firefox, Chrome, Edge X VoiceOver with Safari (iOS) Rotor, swipe down TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge X (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":70,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591140320},"returnTo":"/packs/22570317/subscribe"}' id='card-591140320'> <div class='header'> 70 </div> <div class='card-face question'> <div class='question-content'> Navigate from one combo box to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE C NVDA with Firefox, Chrome, Edge C VoiceOver with Safari (iOS) Rotor, swipe down TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge C (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":71,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591140533},"returnTo":"/packs/22570317/subscribe"}' id='card-591140533'> <div class='header'> 71 </div> <div class='card-face question'> <div class='question-content'> Open a combo box </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Alt + Down Arrow NVDA with Firefox, Chrome, Edge Alt + Down Arrow VoiceOver with Safari (iOS) Double tap TalkBack with Chrome, Firefox Double Tap VoiceOver with Safari (macOS) Not available Narrator with Edge Alt + Down Arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":72,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591140626},"returnTo":"/packs/22570317/subscribe"}' id='card-591140626'> <div class='header'> 72 </div> <div class='card-face question'> <div class='question-content'> Browse and select options in a combo box </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Down Arrow or First Letter NVDA with Firefox, Chrome, Edge Down Arrow or First Letter VoiceOver with Safari (iOS) Browse: Drag finger to hear options Select: Double tap desired option TalkBack with Chrome, Firefox Browse: Explore by touch (drag one finger around screen to hear items) or swipe right or left Select: Double tap desired option VoiceOver with Safari (macOS) Not available Narrator with Edge Down Arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":73,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591140922},"returnTo":"/packs/22570317/subscribe"}' id='card-591140922'> <div class='header'> 73 </div> <div class='card-face question'> <div class='question-content'> Navigate from one radio button to the next </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE A NVDA with Firefox, Chrome, Edge R VoiceOver with Safari (iOS) Rotor, swipe down TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge R (in Scan Mode only) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":74,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591141052},"returnTo":"/packs/22570317/subscribe"}' id='card-591141052'> <div class='header'> 74 </div> <div class='card-face question'> <div class='question-content'> Toggle radio button selection </div> </div> <div class='card-face answer'> <div class='answer-content'> JAWS with Chrome, Edge, Firefox, IE Up/Down Arrow, then press Space Bar NVDA with Firefox, Chrome, Edge Up/Down Arrow, then press Space Bar VoiceOver with Safari (iOS) Double Tap TalkBack with Chrome, Firefox Swipe right or left to the desired option, then double tap to select VoiceOver with Safari (macOS) Not available Narrator with Edge Up/Down Arrow, then press Space Bar </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":75,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591141290},"returnTo":"/packs/22570317/subscribe"}' id='card-591141290'> <div class='header'> 75 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> A </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":76,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591141530},"returnTo":"/packs/22570317/subscribe"}' id='card-591141530'> <div class='header'> 76 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> B. False </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":77,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591141666},"returnTo":"/packs/22570317/subscribe"}' id='card-591141666'> <div class='header'> 77 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> B. Navigate between cells in a table </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":78,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591141905},"returnTo":"/packs/22570317/subscribe"}' id='card-591141905'> <div class='header'> 78 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> D. Landmarks </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":79,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591141947},"returnTo":"/packs/22570317/subscribe"}' id='card-591141947'> <div class='header'> 79 </div> <div class='card-face question'> <div class='question-content'> 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. </div> </div> <div class='card-face answer'> <div class='answer-content'> True </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":80,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591146124},"returnTo":"/packs/22570317/subscribe"}' id='card-591146124'> <div class='header'> 80 </div> <div class='card-face question'> <div class='question-content'> Navigating by semantic elements </div> </div> <div class='card-face answer'> <div class='answer-content'> When users want to navigate by semantic elements — such as headings, landmarks, tables, graphics, lists, links, etc. — they can use the screen reader's keyboard shortcuts to go forward or backward through those elements. In JAWS and NVDA, document mode or reading mode is the same mode that allows them to navigate by semantic elements. In VoiceOver for macOS, there is no need to switch modes, because VoiceOver doesn't have the same concept of modes as other screen readers. In Narrator, users need to enter into "Scan Mode" (by pressing Caps lock + Space bar) to navigate by semantic elements. </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":81,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591146267},"returnTo":"/packs/22570317/subscribe"}' id='card-591146267'> <div class='header'> 81 </div> <div class='card-face question'> <div class='question-content'> </div> </div> <div class='card-face answer'> <div class='answer-content'> NVDA Insert + Space bar (switches between document mode and focus mode) VoiceOver for macOS No need to switch modes Narrator Caps lock + Space bar (turns Scan Mode on or off) </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":82,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591146838},"returnTo":"/packs/22570317/subscribe"}' id='card-591146838'> <div class='header'> 82 </div> <div class='card-face question'> <div class='question-content'> Which screen reader mode in NVDA allows users to type "H" to go to the next heading? </div> </div> <div class='card-face answer'> <div class='answer-content'> Document/Browse mode </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":83,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591146946},"returnTo":"/packs/22570317/subscribe"}' id='card-591146946'> <div class='header'> 83 </div> <div class='card-face question'> <div class='question-content'> True or false: VoiceOver on OSX does not differentiate between document/browse mode and focus mode </div> </div> <div class='card-face answer'> <div class='answer-content'> True </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":84,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591147082},"returnTo":"/packs/22570317/subscribe"}' id='card-591147082'> <div class='header'> 84 </div> <div class='card-face question'> <div class='question-content'> True or false: Non-focusable text (e.g., regular paragraphs, <div> elements, headings, etc.) are not available to NVDA users in focus mode. </div> </div> <div class='card-face answer'> <div class='answer-content'> True </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":85,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591147275},"returnTo":"/packs/22570317/subscribe"}' id='card-591147275'> <div class='header'> 85 </div> <div class='card-face question'> <div class='question-content'> 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. </div> </div> <div class='card-face answer'> <div class='answer-content'> A. JAWS says "G" out loud, and the letter "G" is typed in the text field </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":86,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591147634},"returnTo":"/packs/22570317/subscribe"}' id='card-591147634'> <div class='header'> 86 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> C. Down arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":87,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591147719},"returnTo":"/packs/22570317/subscribe"}' id='card-591147719'> <div class='header'> 87 </div> <div class='card-face question'> <div class='question-content'> When using JAWS, how do you navigate to the next heading? </div> </div> <div class='card-face answer'> <div class='answer-content'> H key </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":88,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591147856},"returnTo":"/packs/22570317/subscribe"}' id='card-591147856'> <div class='header'> 88 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> A. R </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":89,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591147934},"returnTo":"/packs/22570317/subscribe"}' id='card-591147934'> <div class='header'> 89 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> E. Insert + F3 </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":90,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591148136},"returnTo":"/packs/22570317/subscribe"}' id='card-591148136'> <div class='header'> 90 </div> <div class='card-face question'> <div class='question-content'> Which browser is recommended for use with JAWS? A. Chrome B. Opera C. Firefox D. Safari E. Edge </div> </div> <div class='card-face answer'> <div class='answer-content'> A. Chrome </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":91,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591148253},"returnTo":"/packs/22570317/subscribe"}' id='card-591148253'> <div class='header'> 91 </div> <div class='card-face question'> <div class='question-content'> Which browser is recommended for use with NVDA? A. Chrome B. Opera C. Firefox D. Safari E. Edge F. Internet Explorer </div> </div> <div class='card-face answer'> <div class='answer-content'> C. Firefox </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":92,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591148567},"returnTo":"/packs/22570317/subscribe"}' id='card-591148567'> <div class='header'> 92 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> C. Down arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":93,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591148656},"returnTo":"/packs/22570317/subscribe"}' id='card-591148656'> <div class='header'> 93 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> E. H </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":94,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591148845},"returnTo":"/packs/22570317/subscribe"}' id='card-591148845'> <div class='header'> 94 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> A. D </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":95,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149012},"returnTo":"/packs/22570317/subscribe"}' id='card-591149012'> <div class='header'> 95 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> C. Insert + F7 </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":96,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149400},"returnTo":"/packs/22570317/subscribe"}' id='card-591149400'> <div class='header'> 96 </div> <div class='card-face question'> <div class='question-content'> Which browser is recommended for use with VoiceOver on iOS? A. Chrome B. Opera C. Firefox D. Safari E. Internet Explorer </div> </div> <div class='card-face answer'> <div class='answer-content'> D. Safari </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":97,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149487},"returnTo":"/packs/22570317/subscribe"}' id='card-591149487'> <div class='header'> 97 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> A. Swipe left to right </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":98,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149544},"returnTo":"/packs/22570317/subscribe"}' id='card-591149544'> <div class='header'> 98 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> G. Double tap the screen anywhere </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":99,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149626},"returnTo":"/packs/22570317/subscribe"}' id='card-591149626'> <div class='header'> 99 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> Place two fingers on the screen and rotate them </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":100,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149798},"returnTo":"/packs/22570317/subscribe"}' id='card-591149798'> <div class='header'> 100 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> D. Set the rotor to navigate by headings, then swipe down </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":101,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591149922},"returnTo":"/packs/22570317/subscribe"}' id='card-591149922'> <div class='header'> 101 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> D. Set the rotor to navigate by landmarks, then swipe down </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":102,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591150033},"returnTo":"/packs/22570317/subscribe"}' id='card-591150033'> <div class='header'> 102 </div> <div class='card-face question'> <div class='question-content'> Which browser is recommended for use with TalkBack? A. Chrome B. Opera C. Firefox D. Facebook E. Internet </div> </div> <div class='card-face answer'> <div class='answer-content'> A. Chrome </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":103,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591151208},"returnTo":"/packs/22570317/subscribe"}' id='card-591151208'> <div class='header'> 103 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> A. Swipe right </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":104,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591151245},"returnTo":"/packs/22570317/subscribe"}' id='card-591151245'> <div class='header'> 104 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> G. Double tap the screen anywhere </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":105,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591151333},"returnTo":"/packs/22570317/subscribe"}' id='card-591151333'> <div class='header'> 105 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> D. Swipe down then right </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":106,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591151447},"returnTo":"/packs/22570317/subscribe"}' id='card-591151447'> <div class='header'> 106 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> E. Swipe down then up </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":107,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591151670},"returnTo":"/packs/22570317/subscribe"}' id='card-591151670'> <div class='header'> 107 </div> <div class='card-face question'> <div class='question-content'> Which browser is recommended for use with VoiceOver on macOS? A. Chrome B. Opera C. Firefox D. Safari </div> </div> <div class='card-face answer'> <div class='answer-content'> D. Safari </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":108,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591152189},"returnTo":"/packs/22570317/subscribe"}' id='card-591152189'> <div class='header'> 108 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> H. Control + Option + right arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":109,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591152454},"returnTo":"/packs/22570317/subscribe"}' id='card-591152454'> <div class='header'> 109 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> B. Caps lock + H </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":110,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591152708},"returnTo":"/packs/22570317/subscribe"}' id='card-591152708'> <div class='header'> 110 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> 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 </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":111,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591152840},"returnTo":"/packs/22570317/subscribe"}' id='card-591152840'> <div class='header'> 111 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> B. Ctrl + Option + U </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":112,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591152985},"returnTo":"/packs/22570317/subscribe"}' id='card-591152985'> <div class='header'> 112 </div> <div class='card-face question'> <div class='question-content'> Which browser is recommended for use with Narrator? A. Chrome B. Opera C. Firefox D. Safari E. Edge F. Internet Explorer </div> </div> <div class='card-face answer'> <div class='answer-content'> E. Edge </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":113,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591153128},"returnTo":"/packs/22570317/subscribe"}' id='card-591153128'> <div class='header'> 113 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> F. Caps lock + right arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":114,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591153279},"returnTo":"/packs/22570317/subscribe"}' id='card-591153279'> <div class='header'> 114 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> F. Caps lock plus space bar </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":115,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591153385},"returnTo":"/packs/22570317/subscribe"}' id='card-591153385'> <div class='header'> 115 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> E. H </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":116,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591153498},"returnTo":"/packs/22570317/subscribe"}' id='card-591153498'> <div class='header'> 116 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> A. D </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":117,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591153666},"returnTo":"/packs/22570317/subscribe"}' id='card-591153666'> <div class='header'> 117 </div> <div class='card-face question'> <div class='question-content'> 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 </div> </div> <div class='card-face answer'> <div class='answer-content'> C. Ctrl + Alt + Right arrow </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":118,"qSoundUrl":null,"resources":{"deckId":17708162,"packId":22570317,"cardId":591153858},"returnTo":"/packs/22570317/subscribe"}' id='card-591153858'> <div class='header'> 118 </div> <div class='card-face question'> <div class='question-content'> </div> </div> <div class='card-face answer'> <div class='answer-content'> </div> </div> </div> </div> </div> </div> <div class='flashcards-sidebar'> <div class='sidebar-header'> <div class='react-component' id='flashcards-search-bar'> <div class='placeholder market-search-bar' id='flashcards-search-bar-placeholder'></div> </div> </div> <div class='sidebar-content'> <p class='deck-subject-heading'> <a class="decks-in-subject-link" href="/packs/iaap-was-exam-preparation-2025-22570317"><span class="pack-name">IAAP WAS EXAM Preparation 2025</span> (29 decks) </a></p> <ul class='deck-list-items'> <a class='deck-link ' href='/flashcards/types-of-disabilities-18167849/packs/22570317'> <li class='deck-list-item'>Types of Disabilities</li> </a> <a class='deck-link ' href='/flashcards/wcag-and-accessibility-general-questions-17725293/packs/22570317'> <li class='deck-list-item'>WCAG and Accessibility General Questions</li> </a> <a class='deck-link ' href='/flashcards/wcag-22-perceivable-17707918/packs/22570317'> <li class='deck-list-item'>WCAG 2.2 - Perceivable</li> </a> <a class='deck-link ' href='/flashcards/wcag-22-operable-17707964/packs/22570317'> <li class='deck-list-item'>WCAG 2.2 - Operable</li> </a> <a class='deck-link ' href='/flashcards/wcag-22-understandable-17707978/packs/22570317'> <li class='deck-list-item'>WCAG 2.2 Understandable</li> </a> <a class='deck-link ' href='/flashcards/wcag-22-robust-17707980/packs/22570317'> <li class='deck-list-item'>WCAG 2.2 Robust</li> </a> <a class='deck-link ' href='/flashcards/wcag-22-random-questions-17707990/packs/22570317'> <li class='deck-list-item'>WCAG 2.2 - Random Questions</li> </a> <a class='deck-link ' href='/flashcards/atag-principles-guidelines-basics-17940467/packs/22570317'> <li class='deck-list-item'>ATAG - principles, guidelines, basics</li> </a> <a class='deck-link ' href='/flashcards/en-301-549-17790705/packs/22570317'> <li class='deck-list-item'>EN 301 549</li> </a> <a class='deck-link ' href='/flashcards/wai-aria-17708011/packs/22570317'> <li class='deck-list-item'>WAI-ARIA</li> </a> <a class='deck-link ' href='/flashcards/semantic-structure-and-navigation-with-w-17708022/packs/22570317'> <li class='deck-list-item'>Semantic Structure and Navigation (with WCAG 2.2 updates)</li> </a> <a class='deck-link ' href='/flashcards/visual-design-and-colors-with-wcag-22-up-17708030/packs/22570317'> <li class='deck-list-item'>Visual Design and Colors (with WCAG 2.2 updates)</li> </a> <a class='deck-link ' href='/flashcards/device-independent-input-methods-with-wc-17708036/packs/22570317'> <li class='deck-list-item'>Device-Independent Input Methods (with WCAG 2.2 updates)</li> </a> <a class='deck-link ' href='/flashcards/form-labels-instructions-and-validation-17708044/packs/22570317'> <li class='deck-list-item'>Form Labels, Instructions, and Validation (with WCAG 2.2 updates)</li> </a> <a class='deck-link ' href='/flashcards/images-svg-and-canvas-17708050/packs/22570317'> <li class='deck-list-item'>Images, SVG, and Canvas</li> </a> <a class='deck-link ' href='/flashcards/responsive-design-and-zoom-17708054/packs/22570317'> <li class='deck-list-item'>Responsive Design and Zoom</li> </a> <a class='deck-link ' href='/flashcards/multimedia-animations-and-motion-17708061/packs/22570317'> <li class='deck-list-item'>Multimedia, Animations, and Motion</li> </a> <a class='deck-link ' href='/flashcards/custom-javascript-aria-widgets-17708125/packs/22570317'> <li class='deck-list-item'>Custom JavaScript/ARIA Widgets</li> </a> <a class='deck-link ' href='/flashcards/dynamic-updates-ajax-and-single-page-app-17708138/packs/22570317'> <li class='deck-list-item'>Dynamic Updates, AJAX, and Single-Page Apps</li> </a> <a class='deck-link ' href='/flashcards/web-accessibility-testing-basic-methods-17708154/packs/22570317'> <li class='deck-list-item'>Web Accessibility Testing: Basic Methods and Tools</li> </a> <a class='deck-link selected' href='/flashcards/web-accessibility-testing-screen-readers-17708162/packs/22570317'> <li class='deck-list-item'>Web Accessibility Testing: Screen Readers</li> </a> <a class='deck-link ' href='/flashcards/wcag-22-conformance-testing-methodology-17708184/packs/22570317'> <li class='deck-list-item'>WCAG 2.2 Conformance Testing Methodology</li> </a> <a class='deck-link ' href='/flashcards/wcag-21-conformance-testing-methodology-17708187/packs/22570317'> <li class='deck-list-item'>WCAG 2.1 Conformance Testing Methodology</li> </a> <a class='deck-link ' href='/flashcards/usability-testing-for-accessibility-17708200/packs/22570317'> <li class='deck-list-item'>Usability Testing for Accessibility</li> </a> <a class='deck-link ' href='/flashcards/assistive-technology-17779195/packs/22570317'> <li class='deck-list-item'>Assistive Technology</li> </a> <a class='deck-link ' href='/flashcards/accessible-behavior-17929141/packs/22570317'> <li class='deck-list-item'>Accessible Behavior</li> </a> <a class='deck-link ' href='/flashcards/show-and-hide-techniques-with-html-and-c-17929501/packs/22570317'> <li class='deck-list-item'>Show and hide techniques with HTML and CSS</li> </a> <a class='deck-link ' href='/flashcards/accessible-tables-17930026/packs/22570317'> <li class='deck-list-item'>Accessible Tables</li> </a> <a class='deck-link ' href='/flashcards/mobile-accessibility-18513991/packs/22570317'> <li class='deck-list-item'>Mobile Accessibility</li> </a> </ul> </div> </div> </div> <div id='tooltip-controller'></div> <div data='{"packId":22570317,"source":"spaced-repetition-modal","subject":"IAAP WAS EXAM Preparation 2025","resources":{"deckId":17708162,"packId":22570317},"returnTo":"/packs/22570317/subscribe"}' id='spaced-repetition-modal-controller'></div> <div id='banner-controller'></div> <div id='dialog-modal-controller'></div> <div class='band band-footer'> <div class='footer-main'> <ul class='sections'> <li class='section key-links'> <p class='section-heading'> Key Links </p> <ul class='options-list'> <li class='option'> <a id="footer-pricing-link" class="option-link" href="/pricing?paywall=upgrade">Pricing</a> </li> <li class='option'> <a class="option-link" href="/companies">Corporate Training</a> </li> <li class='option'> <a class="option-link" href="/teachers">Teachers & Schools</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="nofollow noopener noreferrer" href="https://itunes.apple.com/us/app/brainscape-smart-flashcards/id442415567?mt=8">iOS App</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="nofollow noopener noreferrer" href="https://play.google.com/store/apps/details?id=com.brainscape.mobile.portal">Android App</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="noopener" href="https://www.brainscape.com/faq">Help Center</a> </li> </ul> </li> <li class='section subjects'> <p class='section-heading'> Subjects </p> <ul class='options-list'> <li class='option'> <a class="option-link" href="/subjects/medical-nursing">Medical & Nursing</a> </li> <li class='option'> <a class="option-link" href="/subjects/law">Law Education</a> </li> <li class='option'> <a class="option-link" href="/subjects/foreign-languages">Foreign Languages</a> </li> <li class='option'> <a class="option-link" href="/subjects-directory/a">All Subjects A-Z</a> </li> <li class='option certified-classes'> <a class="option-link" href="/learn">All Certified Classes</a> </li> </ul> </li> <li class='section company'> <p class='section-heading'> Company </p> <ul class='options-list'> <li class='option'> <a class="option-link" href="/about">About Us</a> </li> <li class='option'> <a target="_blank" class="option-link" rel="nofollow noopener noreferrer" href="https://brainscape.zendesk.com/hc/en-us/articles/115002370011-Can-I-earn-money-from-my-flashcards-">Earn Money!</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://www.brainscape.com/academy">Academy</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://brainscapeshop.myspreadshop.com/all">Swag Shop</a> </li> <li class='option'> <a target="_blank" rel="nofollow noopener" class="option-link" href="/contact">Contact</a> </li> <li class='option'> <a target="_blank" rel="nofollow noopener" class="option-link" href="/terms">Terms</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://www.brainscape.com/academy/brainscape-podcasts/">Podcasts</a> </li> <li class='option'> <a target="_blank" class="option-link" href="/careers">Careers</a> </li> </ul> </li> <li class='section find-us'> <p class='section-heading'> Find Us </p> <ul class='social-media-list'> <li class='option twitter-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://twitter.com/Brainscape"><img data-src="/pks/images/shared/twitterx-af917e8b474ed7c95a19.svg" alt="twitter badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option linkedin-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.linkedin.com/company/brainscape/"><img data-src="/pks/images/shared/linkedin-2f15819658f768056cef.svg" alt="linkedin badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option facebook-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.facebook.com/Brainscape"><img data-src="/pks/images/shared/facebook-1598a44227eabc411188.svg" alt="facebook badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option youtube-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.youtube.com/c/BrainscapeNY"><img data-src="/pks/images/shared/youtube-7f2994b2dc1891582524.svg" alt="youtube badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option pinterest-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.pinterest.com/brainscape/"><img data-src="/pks/images/shared/pinterest-04f51aa292161075437b.svg" alt="pinterest badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option tiktok-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.tiktok.com/@brainscapeu"><img data-src="/pks/images/shared/tiktok-644cf4608bd73fbbb24f.svg" alt="tiktok badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option insta-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.instagram.com/brainscape/"><img data-src="/pks/images/shared/insta-210cc2d059ae807961d2.svg" alt="insta badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> </ul> <div class='get-the-app'> <div class='qr-code'> <img data-src="https://www.brainscape.com/assets/cms/public-views/shared/shortio-from-homepage.png" alt="QR code" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="130" height="130" /> </div> <div class='app-badges'> <div class='badge apple-badge'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://apps.apple.com/us/app/brainscape-smart-flashcards/id442415567"><img data-src="/pks/images/shared/apple-badge-b6e4f380fb879821d601.svg" alt="apple badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="124" height="50" /></a> </div> <div class='badge android-badge'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://play.google.com/store/apps/details?id=com.brainscape.mobile.portal&utm_source=global_co&utm_medium=prtnr&utm_content=Mar2515&utm_campaign=PartBadge&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1"><img data-src="/pks/images/shared/android-badge-a2251833dc7f6ca8879c.svg" alt="android badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="124" height="50" /></a> </div> </div> </div> </li> </ul> </div> <div class='footer-blurb'> Brainscape helps you reach your goals faster, through stronger study habits. <br> © 2025 Bold Learning Solutions. <a class="option-link" href="/terms">Terms and Conditions</a> </div> </div> <script> if (typeof window.__REACT_DEVTOOLS_GLOBAL_HOOK__ === 'object') { __REACT_DEVTOOLS_GLOBAL_HOOK__.inject = function() {}; } </script> <script> window.addEventListener('load', () => { setTimeout(() => { const script = document.createElement('script'); script.src = "/pks/js/public-flashcards-page-9140413b5150ce9700f9.js"; script.defer = true; document.body.appendChild(script); }, 0); }); </script> <script src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js" defer="defer"></script> <script> document.addEventListener("mainSharedready", () => { GaHelper.setGaDimension("dimension1","No"); }); </script> <script type='application/ld+json'> {"@context":"https://schema.org/","@type":"Quiz","about":{"@type":"Thing","name":"Web Accessibility Testing: Screen Readers"},"hasPart":[{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"When testing your code what should you look for?","acceptedAnswer":{"@type":"Answer","text":"- Elements should have complete start and end tags - Elements should be nested according to their specifications - Elements should not contain duplicate attributes - Any IDs should be unique, except where the specifications allow these features."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What should you include in development test routine?","acceptedAnswer":{"@type":"Answer","text":"- Keyboard testing. Do all the functionalities work with just a keyboard only? - Automated accessibility checks in the browser - Zoom in and out with your browser."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are some additional steps that can be taken when doing accessibility testing?","acceptedAnswer":{"@type":"Answer","text":"- Check the navigation and information order with a screen reader - Try focusing and try activating links and buttons with voice recognition software - Consider using automated checks before a commit, using a linter."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"When doing keyboard testing what should you test for?","acceptedAnswer":{"@type":"Answer","text":"- Is the first tab a skip link to the main content, and does that work? - Is the tab order sequential, logical, and as expected? - Can you see where you are while tabbing through the website? Is there a clear visual change when you focus on a link, button or input? - The menu: can you access the menu items, can you open a hamburger menu, tab around and close it again? - Can you operate radio buttons, checkboxes, and dropdown selects in a form? - Can you operate the next and previous buttons in a carousel? - Can you open and close items in an accordion?"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What keyboard testing should be done for a modal?","acceptedAnswer":{"@type":"Answer","text":"- If a modal opens, can you access links on it? Does the modal get keyboard focus, or does the focus stay on the page itself? - Can you access the close button (often an X) and close the modal? - Can you close the modal with the Escape key?"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are some automated testing tools?","acceptedAnswer":{"@type":"Answer","text":"WAVE, AXE, HTML_CodeSniffer, Lighthouse https://www.w3.org/WAI/test-evaluate/tools/list/"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What tests do you need to perform for zooming?","acceptedAnswer":{"@type":"Answer","text":"- The first one: open your site Chrome and set your window to a width of 1280 pixels and zoom in up to 400%. - The second test is to zoom in for only text. Open your site in FireFox, set zoom to text only and zoom in up to 200%. Can you read the text and use the functionality?"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What should you test for when you are doing screen reading testing?","acceptedAnswer":{"@type":"Answer","text":"- Check the content story: does it make sense reading from the top down? - Check the headings list: does it represent the content and is all related content below the heading in the DOM? - Check the link list: do links texts make sense? - Check whether dynamic changes are announced."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Yes! Your frontend code is parsing. This means: A. The syntax of the frontend code is error-free B. The frontend code is fully accessible","acceptedAnswer":{"@type":"Answer","text":"A. The syntax of the frontend code is error-free"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"IDs of form controls should be unique on a web page. A. True B. False","acceptedAnswer":{"@type":"Answer","text":"A. True"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"The steps required for accessibility testing are: A. Keyboard testing B. Automated accessibility checks in the browser C. Zooming in and out in your browser D. All of the above","acceptedAnswer":{"@type":"Answer","text":"D. All of the above"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"When opening a modal (pop-up), the keyboard focus can be put on … Check all that apply. A. The close button B. The first input field\u2028 C. The button for opening the modal D. The top of the page","acceptedAnswer":{"@type":"Answer","text":"B. The first input field\u2028"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What can you check with a screen reader? Check all that apply. A. Whether the spelling of my content is correct B. Whether link texts make sense C. Visual focus styles D. Whether everything is understandable if you read from the top down E. Feedback on dynamic changes","acceptedAnswer":{"@type":"Answer","text":"A. Whether the spelling of my content is correct D. Whether everything is understandable if you read from the top down E. Feedback on dynamic changes"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What can you test with voice recognition software on a web page? A. Whether links and buttons are focusable B. Whether I can ask questions with my voice and get answers from the software","acceptedAnswer":{"@type":"Answer","text":"A. Whether links and buttons are focusable"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"With automated test tools I can find all accessibility issues on a web page. A. True B. False","acceptedAnswer":{"@type":"Answer","text":"B. False"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What information does an accessibility API convey to screenreaders?","acceptedAnswer":{"@type":"Answer","text":"The operating system has an accessibility API which conveys information about the names, roles, values, and structure of web content, plus events that should be announced to users."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Who uses screen readers?","acceptedAnswer":{"@type":"Answer","text":"- Blind Blind users typically listen to the audio output of screen readers. - Deafblind People who have both visual and auditory disabilities may use a screen reader with a refreshable braille output device, to allow them to feel the braille characters with their fingers. - Low vision People with low vision typically use screen magnification software to make it easier to read. For some people, the magnification is not enough, so they supplement the magnification with a screen reader. This allows them to both see and hear the web content. - Reading disabilities People with reading disabilities may find it easier to listen to content read out loud to them, rather than read it with their eyes. - Cognitive disabilities People with various kinds of cognitive disabilities may also find it easier to understand spoken words rather than written words. - Eyes-free or hands-free environments People with or without disabilities may use screen readers when reading things in eyes-free or hands-free environments."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Why do you also need test with screen readers? What will automated testing tools","acceptedAnswer":{"@type":"Answer","text":"- Quality and accuracy: Inaccurate or poor-quality alt text is no better than missing alt text. Automated tools can only tell you whether an image has alt text. They cannot tell you whether the alt text is accurate or meaningful. The same is true of text labels for form elements, captions on tables, headers on data tables, and so on. - Keyboard focus patterns: Automated tools cannot reliably determine where the keyboard focus should be at any given point in time. When a user clicks on a button, the focus should go to a logical destination — such as a dialog or error message — but it is impossible for an automated tool to know what the appropriate focus location is. - Custom widgets: With custom widgets, like dialogs, carousels, and accordion menus, there is no way for an automated tool to detect all the possible ways of creating them incorrectly, especially when it comes to keyboard interaction patterns. At best, an automated tool might be able to identify when a widget is created correctly, by comparing the names, roles, values, and keyboard focus patterns of the widget with the ARIA 1.1 authoring practices opens in a new window[note] document. Even that is tricky."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are the most common screen readers and browser pairs?","acceptedAnswer":{"@type":"Answer","text":"Desktop screen readers: - JAWS with Chrome - NVDA with Firefox - NVDA with Chrome - JAWS with IE - VoiceOver with Safari (macOS) - Narrator with Edge Mobile screen readers: - VoiceOver with Safari (iOS) - TalkBack with Chrome (Android)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: You can customize web content to screen reader users by detecting which screen reader they're using.","acceptedAnswer":{"@type":"Answer","text":"False:"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which phone is currently the most popular among blind users? A. Windows Phone B. iPhone C. Android Phone D. Blackberry Phone","acceptedAnswer":{"@type":"Answer","text":"B. iPhone"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: Screen readers can output to either audio or Braille.","acceptedAnswer":{"@type":"Answer","text":"True"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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","acceptedAnswer":{"@type":"Answer","text":"G. JAWs, NVDA, and WIndow-eyes"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: Testing with screen readers is recommended, but is not required, if automated accessibility tests are performed prior to launching web content.","acceptedAnswer":{"@type":"Answer","text":"False"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What are common keystrokes that are used with Narrator?","acceptedAnswer":{"@type":"Answer","text":"- Turn on/off- Windows key + Control + Enter - Stop talking - Control - Next item- Caps lock + Right arrow - Previous item- Caps lock + Left arrow - Next focusable item - Tab - Previous focusable item- Shift + Tab - Toggle scan mode on/off- Caps lock + Space bar - Next heading- H (in scan mode) - Previous heading- Shift + H (in scan mode) - Next landmark/region - D (in scan mode) - Previous landmark/region - Shift + D (in scan mode) - Navigate table cells- Control + Alt + Arrow keys - Activate a link - Enter - Activate a button- Enter or Space bar - Open and navigate a select list- Alt + Down arrow, then Down/Up arrow"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do screen readers allow user to navigate a web page?","acceptedAnswer":{"@type":"Answer","text":"Screen readers allow users to navigate by other elements, such as: - Landmarks (sections of the overall design, including the header, navigation, main content, and footer) - Headings - Links - Tables - Form elements - Graphics - List items - Iframes - And several other categories of semantic elements"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What CSS styles will screen readers ignore?","acceptedAnswer":{"@type":"Answer","text":"Screen reader users will generally NOT be aware of any of the following: - Color - Background color - Background images - Font size - Font style - Bold - Italic - All capitals (unless the user listens to the word character by character) - Visual position - Visual spacing between items - Columns or floating containers"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How could convey to meaning to a screen reader rather than just using CSS styles, such as in relation to background color to highlight text?","acceptedAnswer":{"@type":"Answer","text":"If you are using CSS to convey meaning — such as using a background color to highlight text — be sure to supplement the CSS with actual text that conveys the same meaning. For example, you could prefix the highlighted text with the word \"Important:\"."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What does CSS display:none do?","acceptedAnswer":{"@type":"Answer","text":"One CSS property that screen readers do pay attention to is display:none. Screen readers ignore everything marked as display:none, and do not let users access it."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is a list of symbols that are supported by screenreaders?","acceptedAnswer":{"@type":"Answer","text":"Here is a list of some of the safest symbols to use (though screen reader support may still not be universal): @ (the at symbol) \u0026 (ampersand, written either as \u0026 or \u0026 in the markup) / (slash) © (copyright, written as ©) ® (registered, written as ®) ™ (trademark, written as ™) ¶ (paragraph, written as ¶) (bullet, written as •) $ (dollar) € (Euro, written as €) £ (British pound, written as £) ¥ (Yen, written as ¥) % (percent) ½ (one half, written as ½) ¼ (one fourth, written as ¼) ¾ (three fourths, written as ¾) ° (degrees, written as °)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the best practice for semantic markup for abbreviations","acceptedAnswer":{"@type":"Answer","text":"You can use the element to mark abbreviations and acronyms. SCUBA"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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","acceptedAnswer":{"@type":"Answer","text":"E. Keyboard"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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. Yes B. No","acceptedAnswer":{"@type":"Answer","text":"B. No"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: In their default settings, most screen readers announce every comma and every period.","acceptedAnswer":{"@type":"Answer","text":"False"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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.","acceptedAnswer":{"@type":"Answer","text":"False: It depends on the screen reader how some things are announced."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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","acceptedAnswer":{"@type":"Answer","text":"H. None of the above"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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","acceptedAnswer":{"@type":"Answer","text":"C. There may be a delay between the time when an AJAX load event is complete and when the virtual buffer is updated"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"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","acceptedAnswer":{"@type":"Answer","text":"B. The DOM (the markup after it has been processed by the browser)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or false: All browsers use the same accessibility API.","acceptedAnswer":{"@type":"Answer","text":"False"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of the page title for screen readers?","acceptedAnswer":{"@type":"Answer","text":"The page , which is generally displayed in the tab of a browser, is a quick way to learn about the content on the web page."}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you list headings in sceen readers?","acceptedAnswer":{"@type":"Answer","text":"- JAWS with Chrome, Edge, Firefox, IE - Insert + F6 - NVDA with Firefox, Chrome, Edge - Insert + F7 (to open Elements List), then select Headings - VoiceOver with Safari (iOS) Not available - TalkBack with Chrome, Firefox Not available - VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select headings - Narrator with Edge Caps Lock + F6"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you navigate from one heading to another with screen readers?","acceptedAnswer":{"@type":"Answer","text":"Navigate from one heading to the next JAWS with Chrome, Edge, Firefox, IE H NVDA with Firefox, Chrome, Edge H VoiceOver with Safari (iOS) Use the rotor to select headings (twist two fingers on the screen to left or right), then swipe down with one finger TalkBack with Chrome, Firefox Swipe up then down (or swipe down then up) repeatedly to cycle through the reading controls until \"Headings\" is selected, then swipe down VoiceOver with Safari (macOS) Control + Option + Command + H Narrator with Edge H (in Scan Mode only)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"how do you navigate to headings of a certain level?","acceptedAnswer":{"@type":"Answer","text":"Navigate to headings of a certain level JAWS with Chrome, Edge, Firefox, IE 1-6 NVDA with Firefox, Chrome, Edge 1-6 VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge 1-6 (in Scan Mode only)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you list all landmarks in screen readers?","acceptedAnswer":{"@type":"Answer","text":"JAWS with Chrome, Edge, Firefox, IE Insert + F3 (to open Elements List), then select Landmarks NVDA with Firefox, Chrome, Edge Insert + F7 (to open Elements List), then select Landmarks VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Option + U (to open rotor), then use left/right arrows to select Landmarks Narrator with Edge Caps Lock + F5"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you navigate from one landmark to the next?","acceptedAnswer":{"@type":"Answer","text":"Navigate from One Landmark to the Next JAWS with Chrome, Edge, Firefox, IE JAWS 16 and above: R JAWS 15 and below: ; (semi-colon) NVDA with Firefox, Chrome, Edge D VoiceOver with Safari (iOS) Use the rotor to select landmarks (twist two fingers on the screen to left or right), then swipe down with one finger TalkBack with Chrome, Firefox Swipe up then down (or swipe down then up) repeatedly to cycle through the reading controls until \"Landmarks\" is selected, then swipe down VoiceOver with Safari (macOS) Not available Narrator with Edge D (in Scan Mode only)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you navigate to main content landmark with screen readers?","acceptedAnswer":{"@type":"Answer","text":"Navigate to the main content landmark JAWS with Chrome, Edge, Firefox, IE Q NVDA with Firefox, Chrome, Edge Not available VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Caps Lock + N"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you list all list with a screen reader?","acceptedAnswer":{"@type":"Answer","text":"List all list JAWS with Chrome, Edge, Firefox, IE Insert + Control + L NVDA with Firefox, Chrome, Edge Not available VoiceOver with Safari (iOS) Not available TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Not available Narrator with Edge Not available"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"How do you navigate from one list to another with a screen reader?","acceptedAnswer":{"@type":"Answer","text":"Navigate from one list to the next JAWS with Chrome, Edge, Firefox, IE L NVDA with Firefox, Chrome, Edge 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 \u003e General \u003e Accessibility \u003e VoiceOver \u003e Rotor. TalkBack with Chrome, Firefox Not available VoiceOver with Safari (macOS) Control + Alt + Command + X Narrator with Edge Not available"}}],"educationalAlignment":[{"@type":"AlignmentObject","alignmentType":"educationalSubject","targetName":"Web Accessibility Testing: Screen Readers"}]} </script> </body> </html>