A table row can be deleted by

A. selecting the row and pressing the Delete key on the keyboard
B. clicking the cursor in the row and pressing the BACKSPACE key
C. selecting the row and choosing Delete Rows in the Rows & Columns group
D. selecting the row and choosing Eraser on the Table Tools Design tab


Answer: C

Computer Science & Information Technology

You might also like to view...

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

1) The loop repetition condition of a for statement is tested before each iteration. 2) If x and y are type int variables, the following code fragments are equivalent. ``` x = ++y; x = y + 1; cout << x << y; cout << x << y; ``` 3) If x and y are type int variables, the following code fragments are equivalent. ``` x = x * y + 10; x *= y + 10; ``` 4) If the value of x is 6, the statement ``` cout << x++ <<; endl; ``` displays 6 and then increments x. 5) The following statement ``` cout << setiosflags( ios::fixed ); ``` instructs the stream not to use scientific notation.

Computer Science & Information Technology

The AbstractSet class is a subclass of AbstractBag.

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

Computer Science & Information Technology

The Internet backbone is made up of technologies designed over 20 years ago to support telephone traffic.

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

Computer Science & Information Technology

Program control is best defined as:

a) specifying the degree of control a program has over the computer it is executed on b) specifying the line of code that is executing at a given time c) specifying the order in which the statements are executed d) None of the above.

Computer Science & Information Technology