Making programs easier to use for people with physical limitations is known as enhancing ____.
A. usability
B. accessibility
C. interface
D. compliance
Answer: B
Computer Science & Information Technology
You might also like to view...
When the form tool is used to create a form with related tables, Access automatically adds a(n) ________ to the main form
Fill in the blank(s) with correct word
Computer Science & Information Technology
What states are displayed in the list box by the following program segment?
``` Dim states() As String = {"Colorado, "New Mexico", "Arizona", "Utah"} Dim query = From state in states Where state.length < 5 Select state.ToUpper For Each state in query lstBox.Items.Add(state) Next ``` (A) Utah (B) COLORADO, NEW MEXICO, ARIZONA, UTAH (C) UTAH (D) No states
Computer Science & Information Technology