A(n) ____ is a form control that allows a user to choose from a list of items; all the items in the list are shown.

A. selection list
B. drop-down list box
C. option box
D. either a or c


Answer: A

Computer Science & Information Technology

You might also like to view...

Assuming that a program has the following string object definition, which statement correctly assigns the string literal "Jane" to the string object?

string name; a. name = Jane; b. name = 'Jane'; c. name = "Jane"; d. name = ; e. string name = {Jane};

Computer Science & Information Technology

Which of the following statements is false?

a. Storage of data variables and arrays is temporary. b. Data is lost when a local variable “goes out of scope.” c. Files are used for long-term retention of large amounts of data. d. Data maintained in files is often called transient data.

Computer Science & Information Technology

Only a few decisions you make in a computer program involve evaluating a Boolean expression.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

? The example code above depicts a try block and a catch block. Describe how the try and catch blocks operate when illegal integer division is attempted. Describe what will happen if valid values are entered.

What will be an ideal response?

Computer Science & Information Technology