You should use ____ form controls when a visitor must choose only one option from many options.

A. checkbox
B. drop-down box
C. radio button
D. text box

Answer: C

Computer Science & Information Technology

You might also like to view...

A variable defined inside a method is referred to as __________.

a. a global variable b. a method variable c. a block variable d. a local variable

Computer Science & Information Technology

What would be the result of executing the following code?

int[] x = {0, 1, 2, 3, 4, 5}; a. An array of 6 values, all initialized to 0 and referenced by the variable x will be created. b. An array of 6 values, ranging from 0 through 5 and referenced by the variable x will be created. c. The variable x will contain the values 0 through 5. d. A compiler error will occur.

Computer Science & Information Technology