If…Then is a _________ statement.

a) restricted
b) selection
c) repetition
d) unrestricted

b) selection

Computer Science & Information Technology

You might also like to view...

When an object of a derived class is instantiated, the __________ constructor initializes the _________ members.

a. Base class, base class. b. Derived class, base class. c. Base class, derived class. d. Derived class, public.

Computer Science & Information Technology

If the statements in the body of the loop are all O(1), what is the order of the loop?

A loop body is controlled by the following statement: ``` for (int count = 2; count <= n; count +=2) ``` a) O(1/2) b) O(1) c) O(n) d) O() e) O()

Computer Science & Information Technology