The small circles that surround an inserted picture and indicate that the picture is selected and can be modified or formatted are the ________

Fill in the blank(s) with correct word


sizing handles

Computer Science & Information Technology

You might also like to view...

What will be the value of discountRate after the following statements are executed?

``` double discountRate; char custType = 'B'; switch (custType) { case 'A': discountRate = 0.08; break; case 'B': discountRate = 0.06; case 'C': discountRate = 0.04; default: discountRate = 0.0; } ``` a. 0.08 b. 0.06 c. 0.04 d. 0.0

Computer Science & Information Technology

You create a comment in Visual Basic by placing a(n) ____ before the text that represents the comment.

A. period B. exclamation mark C. apostrophe D. asterisk

Computer Science & Information Technology

grade = num_right * 2.5 is a(n)

a. variable b. operator c. assignment statement d. relational operator

Computer Science & Information Technology

A(n) ____________________ is simply an unauthorized access point.

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

Computer Science & Information Technology