Text added to a picture or object that helps people using a screen reader understand what the object is.

A. Text effects
B. Formatted text
C. Alternative text

C. Alternative text

Computer Science & Information Technology

You might also like to view...

What is the value of the variable ACCUM after instructions corresponding to the following pseudocode are executed?

``` ACCUM = 1 COUNT = 0 DOUNTIL COUNT ? 4 ACCUM = ACCUM + ACCUM COUNT = COUNT + 1 ENDDO ``` a) 8 b) 16 c) 32 d) 64

Computer Science & Information Technology

Which of the following statements is true?

a. The UML models a parameter of an operation by listing the parameter name, followed by a colon and the parameter value between the parentheses after the operation name. b. The UML indicates an operation’s return type by placing a colon and the return value after the parentheses following the operation name. c. UML class diagrams do not specify return types for operations that do not return values. d. Declaring instance variables public is known as data hiding or information hiding.

Computer Science & Information Technology