MC The three types of selection structures are______ ,______ and______ :

a) for, if, if/else.
b) for, while, if.
c) if, if/else, while.
d) if, if/else, if/elif/else.


d) if, if/else, if/elif/else.

Computer Science & Information Technology

You might also like to view...

Give the output from this code fragment:

``` int *p1, *p2; p1 = new int; p2 = new int; *p1 = 10; *p2 = 20; cout << *p1 << “ “ << *p2 << endl; *p1 = *p2; cout << *p1 << “ “ << *p2 << endl; *p1 = 30; cout << *p1 << “ “ << *p2 << endl; ```

Computer Science & Information Technology

A web site address is also known as a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

The place on your computer where you can add or remove programs, manage user accounts, and set up network connections is:

A) Accessories B) Control Panel C) System tools D) System icon

Computer Science & Information Technology

Repetitive stress injuries and other injuries related to the workplace environment are estimated to account for ____ of all serious workplace injuries.

A. one-tenth B. one-half C. one-third D. 80%

Computer Science & Information Technology