If you know exactly how many rows and columns you want to create, you can click the Table button in the Tables group on the Insert tab, and then click ____ on the menu.

A. Insert Rows and Columns
B. Add Table
C. Insert Table
D. none of the above


Answer: C

Computer Science & Information Technology

You might also like to view...

This is a type of coax cable.

What will be an ideal response?

Computer Science & Information Technology

Which of the following will sum up all the integers between 1 and 10, inclusive?

a. ``` var sum = 0; for (var i = 1; i < 11; i ++) sum = sum + i; ``` b. ``` var sum = 1; var i = 1; while(i < 11) sum = sum + i; ``` c. ``` var sum = 1; var i = 1; while(i != 10) { i++; sum = sum + i; } ``` d. ``` var sum = 0; for (var i = 1; i < 10; i++) sum = sum + i; ```

Computer Science & Information Technology

Distinguish between vulnerability, threat, and control

What will be an ideal response?

Computer Science & Information Technology

Sometimes referred to as the “infection vector”, the __________ is the means by which a virus spreads or propagates.

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

Computer Science & Information Technology