The properties of a control are listed in the __________ window.

a. Options
b. Properties
c. Solution Explorer
d. Project


b. Properties

Computer Science & Information Technology

You might also like to view...

You can start the Query Wizard by clicking the Query Wizard button in the _____ group on the Create tab.

A. Queries B. Wizard C. Forms D. Reports

Computer Science & Information Technology

Any FireWire 800 port is backwards-compatible with FireWire 400 devices

Indicate whether the statement is true or false

Computer Science & Information Technology

The following while loop terminates when j > 20.  j = 0;while (j < 20)  j++;

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

Computer Science & Information Technology

What does the following recursive algorithm do?Algorithm recursiveAlgorithm(n)   if (n equals 0)      return 0   end if   return recursiveAlgorithm(n-1)end recursiveAlgorithm

A. Returns the sum of the numbers from 1 to n B. Returns n! C. Returns n D. Returns 0

Computer Science & Information Technology