A11y Acronyms
Design + A11y
Laws or WCAG guidelines
Dev + A11y
Testing Tools
200

Which of these acronyms is not a real accessibility term? stand for?
a) WCAG
b) ARIA
c) FLUFF
d) All of them


c) FLUFF

200

True or false: Color alone must not be the only means of conveying information.

What is True. Any information conveyed by color MUST also have determinable text alternatives.

200

How many WCAG Levels of conformance are there and what are they?

What is 3 levels. Level A, Level AA, Level AAA

200

This semantic HTML element is focusable, responds to keyboard and mouse, and handles click events automatically - no JS needed

What is a <button>

200

On Mac this combo turns VoiceOver on and off

What is cmd + opt (command + option)

400

What does the “11” in “A11y” stand for?

Accessibility (the "11" represents the 11 letters between "A" and "y")

400

What type of image does not require alt text?

What is a decorative image

400

This 1990 law, often abbreviated with 3 letters, prohibits discrimination against people with disabilities in public life.

What is the ADA

400

When using `aria-live` this setting allows a screen reader to wait until the user finishes a task before announcing an update.

What is `aria-live="polite"`

400

While many people think of screen readers or magnifiers, this is actually the most widely used assistive technology on the web

What is the keyboard

600

What does ARIA stand for?

Accessible Rich Internet Applications

600

This writing approach emphasizes clarity, simplicity, and user-centered organization, aiming to ensure that readers can find, understand, and use information the first time they encounter it.

What is Plain Language

600

Which law requires federal agencies to make electronic and information technology accessible?

What is Section 508 of the Rehabilitation Act of 1973

600

Disabling this default mobile browser feature prevents users with low vision from zooming into your site (a major WCAG violation)

What is pinch-to-zoom

600

You can integrate this open-source library into software testing frameworks to catch accessibility issues like missing labels, color contrast violations, and more

What is Axe-Core

800

What does ADA stand for?

Americans with Disabilities Act

800

How many headings levels are there?

What is 6. H1-H6. 

800

In 2012 a lawsuit filed by the National Association of the Deaf lead to this streaming giant agreeing to caption 100% of its content by 2014.

What is Netflix

800

You wrote a test that uses `getByTestId` to assert a button exists. But screen readers can’t access the button. Why was this test misleading?

What is `getByTestId` (or 'asserting with a test id') does not verify semantic accessibility. 

Use another query like `getByRole`

800

This Chrome extension opens in DevTools and allows deep inspection of ARIA attributes, roles, and name computations

What is the accessibility pane/panel (or ARIA DevTools, etc)

1000

What does the acronym W3C stand for, and what is its role in web accessibility?

What is World Wide Web Consortium; it develops standards and guidelines to ensure the long-term growth of the Web.

1000

What contrast ratio is recommended between text and background for readability?

What is at least 4.5:1 for normal text.


1000

What is the significance of the Domino's Pizza case of 2016?

What is confirming that the ADA applies to website and digital products.

It was a landmark Supreme Court decision affirming that the ADA applies to websites.

1000

You’ve rendered a list of focusable items in React inside a Fragment (<></>) - but keyboard navigation skips them. What is likely the cause?

What is missing `tabOrder` because Fragments do not render DOM nodes.

Will also accept - "What is missing OR invalid tabOrder/semantic structure/tabIndex"

1000

This keyboard key, when used alone, can uncover a surprising number of accessibility bugs - no browser extensions required!

What is `Tab`