2021 Example Test Qs Flashcards
Q85. Which of the following is a WCAG 2.0 Level A requirement?
1. Page titles must include the site name
2. Web pages must have titles that describe topic or purpose
3. Unique information must come first in the page title
4. Web page titles must be the same as the top heading in the main content
- Web pages must have titles that describe topic or purpose
Q86. A user has just entered the text string “registration deadline” in a site search field on a university website and hit the submit button. What would be most likely to be the best title for the results page that loads?
a. Virginia Tech | Search
b. Search | Virginia Tech
c. Search results for “Registration deadline” | Virginia Tech
d. Search results | Virginia Tech
c. Search results for “Registration deadline” | Virginia Tech
Q87. Which of the following would be the best text to put in the <title> tag of the accessibility policy page at a university with the top-level heading, “Accessibility Policy”?
1. Accessibility Policy | Virginia Tech
2. Virginia Tech | Accessibility Policy
3. Virginia Tech complies with the requirements set forth under Section 508 of the Rehabilitation Act of 1973 and the Web Content Accessibility Guideline 2.0, Level A and AA
4. This is a trick question; no title is necessary if a top-level heading is provided</title>
- Accessibility Policy | Virginia Tech
[The page <title> **SHOULD** be unique, if possible.](https://dequeuniversity.com/class/semantic-structure2/page-title/meaningful-page-title#unique)</title>
Q88
Which of the following is NOT a valid value for the <code>lang</code> attribute?
1. en
2. english
3. en-gb
4. es
2. English
Q89
Which of the following is NOT a valid way of programmatically indicating the language of a page or content on that page?
1. <html lang=”en”>
2. <span lang=”es”>
3. <doctype html lang=”de”>
4. <blockquote language=”fr”>
3. <doctype html lang=”de”>
Q90
What WCAG conformance level are the success criteria having to do with the language of the page and the language of parts of the page?
1. The criterion having to do with the language of the page and the criterion having to do with the language of parts of the page are both conformance level A requirements
2. The criterion having to do with the language of the page and the criterion having to do with the language of parts of the page are both conformance level AA requirements
3. The criterion having to do with the language of the page is a conformance level A requirement, while the criterion having to do with the language of parts of the page is a level AA requirement.
4. The criterion having to do with the language of the page is a conformance level AA requirement, while the criterion having to do with the language of parts of the page is a level AAA requirement.
3. The criterion having to do with the language of the page is a conformance level A requirement, while the criterion having to do with the language of parts of the page is a level AA requirement.
Q91.
Why is it inadvisable to rely solely on landmark regions as a means of bypassing repetitive content?
1. Landmark regions are not yet supported by all major screen readers
2. Most browsers do not provide a means for sighted keyboard users to use landmark regions to bypass content.
3. Landmark regions are announced to screen reader users when encountered, but most screen readers do not provide a means for navigating between them.
4. Because the accesskey attribute has made landmark regions obsolete
2. Most browsers do not provide a means for sighted keyboard users to use landmark regions to bypass content.
Q92
What is the purpose of landmark regions
1. To designate sections within content
2. To designate sections of the overall page design and layout.
3. To indicate which parts of the page can be read by screen readers.
4. To create focusable areas on the page.
2. To designate sections of the overall page design and layout
Q93
Which of the following is NOT listed among landmarks by most screen readers?
1. <nav>
2. role=”contentinfo”
3. <article>
4. <main>
3. <article>
Q94
In a site with two regions for navigation, one for navigating the site and one for navigating a section of the site, of the following, which would be the best way to code the part of the page with the site navigation?
1. <nav>
2. <navigation aria-label=”site”>
3. <nav alt=”site”>
4. <nav aria-label=”site”>
4. <nav aria-label=”site”>
Q95
Which of the following landmarks is it okay to have more than one of on a page?
1. role=”banner”
2. role=”complementary”
3. role=”main”
4. role=”contentinfo”
2. role=”complementary”
Deque Source: <a><span>Best Practices for Landmarks</span></a>
Q96
Which of the following is NOT way to list all landmarks using a screen reader?
1. In JAWS press Insert + F3 and then select landmarks
2. In NVDA press Insert + F7 and then select landmarks
3. In VoiceOver with Safari on iOS swipe up, then down
4. In VoiceOver with Safari on macOS press Control + Option + U, then use left/right arrows to select landmarks
3. In VoiceOver with Safari on iOS swipe up, then down
Deque Source: <a><span>Navigating Landmarks with Screen
Readers</span></a>
Q97
Which of the following is NOT a way to navigate from one landmark to the next using a screen reader?
1. In JAWS 16 and above, press the R key
2. In NVDA, press the D key
3. In Talkback, bring up the local context menu by swiping up and then right, then select landmarks, then swipe right or left
4. In VoiceOver with Safari on macOS, press Control + Option + L
4. In VoiceOver with Safari on macOS, press Control + Option + L
Deque Source: <a><span>Navigating Landmarks with Screen
Readers</span></a>
Q98
Which of the following is a way to navigate to the main content landmark using a screen reader?
1. In JAWS, press the Q key
2. In NVDA, press the M key
3. In VoiceOver on macOS, press Control + Option + M
4. In Talkback, swipe left, then right
1. In JAWS, press the Q key
Deque: Source: <a><span>Navigating Landmarks with Screen Readers</span></a>
Q99
Which of the following is NOT a benefit of using headings on web pages?
1. They improve search engine optimization
2. They clearly communicate the structure of the document, which benefits everyone
3. They allow screen reader users to easily can get a high-level overview of a web page and quickly jump to the part of the page they are interested in.
4. Most browsers natively provide keyboard shortcuts that allow keyboard users to easily navigate through a document by shifting focus to properly-coded headings.
4. Most browsers natively provide keyboard shortcuts that allow keyboard users to easily navigate through a document by shifting focus to properly-coded headings.
Q100
Which of the following is NOT a valid way of programmatically communicating that something is a heading?
1. <code><h1>A page about headings</h1></code>
2. <code><header>A page about headings</header></code>
3. <code><div role="heading" aria-level="1">A page about headings</div></code>
4. <code><p role\="heading" aria-level="2">A subsection of a page about headings<p></code>
2. <header>A page about headings</header>