Device-Independent Input Methods Flashcards

1
Q

Adequate mouse-click target sizes help which of the following user categories? (Select the most complete answer.)

A. Users with low vision
B. Users with tremors
C. Users with limited dexterity
D. All of the above

A

D. All of the above

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

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

A

false

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

The mouse cursor becomes a hand pointer when the mouse cursor hovers over which of the following native HTML elements?

A. Buttons
B. Links
C. Text fields

A

B. Links

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

Which of the following items will be focusable with the tab key?

A. A <span> element with tabindex=”0”
B. A <div> element with tabindex=”-1”
C. An ARIA link created as follows: <span></span></span>

A

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

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

If the tab order is not correct, the best way to fix it is to:

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

A

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

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

Which of the following is NOT an acceptable visual focus indicator style?

A. a:focus {outline: 0;}
B. a:focus {outline: red 2px solid;}
C. button:focus {color: #fff; background: #000; outline: yellow 1px solid}
D. [role=link] {outline: red 2px solid;}
E. input[type=text] {border: red 1px dotted blue}

A

A. a:focus {outline: 0;}

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

What should be the logical progression of the focus when a person opens and then closes an ARIA dialog?

A. The focus should go to the dialog, then back to the original button that opened the dialog.
B. The focus should go to the dialog, then back to the top of the original web page.
C. The focus should go to the top of the page, then to the dialog, then back to the top of the page.
D. The focus should go to dialog, then back to the browser address bar.

A

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

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

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

A

false

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

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

A

false

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

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

A

true

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

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

A

true

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

The minimum recommended touch target size is:

A. 10px by 10px
B. 20px by 20px
C. 24px by 24px
D. 36px by 36px
E. 44px by 44px
F. 64px by 64px

A

E. 44px by 44px

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

Voice input or speech recognition software is most commonly used by which of the following user categories?

A. Blind users
B. Low-vision users
C. Users with mobility impairments
D. Deaf users

A

C. Users with mobility impairments

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

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

A

true

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

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

A

false, Mouse Grid

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

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

A

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

17
Q

All of the following statements regarding transitions on a web page are true EXCEPT:

A. Transitions can be distracting for users with cognitive disabilities.
B. Transitions should be brief and kept to a minimum.
C. Transitions between foreground and background elements (parallax effects) should occur at a fast rate.
D. Transitions must not interfere with web page reading or interaction.

A

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

18
Q

Interactive elements within content that moves or disappears quickly may be problematic for which group(s) of users? (Select the most complete answer.)

A. Keyboard users
B. Screen reader users
C. Alternative mouse device users
D. Users with cognitive disabilities
E. A and B
F. All of the above

A

F. All of the above