In the accompanying image, item 1 points to a ____.

A. margin
B. bounding box
C. guide line
D. smart guide


Answer: B

Computer Science & Information Technology

You might also like to view...

A protected method can be invoked by other classes.

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

Computer Science & Information Technology

What does the following C function do?

``` int fun(const char *string) { char blank = ' '; int k; int looking = 1; k = strlen(string); while (k >= 0 && looking) { if (string[k] == blank) --k; else looking = 0; } if (looking) return (-1); else return (k); } ``` a. It finds the subscript of the first nonblank character in string. b. It finds the subscript of the last nonblank character in string. c. It counts the nonblank characters in string. d. It finds the subscript of the first blank in string. e. It finds the subscript of the last blank in string.

Computer Science & Information Technology

In general, you begin most modifications on the chart by _____ the chart element you want to change.

A. left-clicking B. right-clicking C. double-clicking D. pointing to

Computer Science & Information Technology

Assuming that pay has been declared a double, the following statement is valid. pay = 2,583.44;

a. true b. false

Computer Science & Information Technology