Some forms use a _____ that contains icons or buttons that represent shortcuts for executing common commands.

A. menu box
B. toolbar
C. dialog box
D. taskbar


Answer: B

Computer Science & Information Technology

You might also like to view...

A(n) ____________________ gradient is one in which the color blending proceeds horizontally or vertically across an object's background.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Warp, distort, and transform effects are all capable of producing cool and interesting results.

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

Computer Science & Information Technology

What is the output from each of the following loops?

a) ``` while ( 0 ) cout << ‘X’; cout << endl; ``` b) ``` do cout << ‘X’; while ( y != y ); cout << endl; ``` c) ``` int i = 1; while (i < 9) { cout i; i++; } ``` d) ``` d) char c = 'A'; do { cout << c << " "; c = c + 2; } while ( c <= 'M' ) cout << endl; ``` e) ``` int i = 0; while (i < 50) { if ( i < 20 && i != 15 ) cout << 'X'; i++; } cout << endl; ```

Computer Science & Information Technology

Rotating and flipping are two very different transformations that produce similar results.

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

Computer Science & Information Technology