What happens if you are in the last cell of a table and press Tab?

A) A new row is created
B) Nothing--you will remain in the cell
C) You return to the first cell in the first row
D) A new column is created, and the insertion point moves to the new column


A

Computer Science & Information Technology

You might also like to view...

Which of the following sets of statements will set floating point output to the stream outStream to fixed point with set 3 places of decimals? In the explanation, you must give any necessary #include directives and using directives or declarations.

a) ``` outStream.setf(ios::fixed); outStream.setf(ios::showpoint); outStream.precision(2); ``` b) ``` outStream.setf(ios::fixed | ios::showpoint); outStream << setprecision(2); ``` c) ``` outStream << setflag(ios::fixed); outStream << setflag(ios::showpoint); outStream << setprecision(2); ``` d) ``` outStream.flags(ios::fixed); outStream.flags(ios::showpoint); outStream.precision(2); ```

Computer Science & Information Technology

The process of reviewing records of network computer activity is called which of the following?

A. monitoring B. archiving C. auditing D. recording

Computer Science & Information Technology

Excel's ________ function adds all of its arguments then divides the sum by the number of arguments

A) MEDIAN B) SUM C) COUNTIF D) AVERAGE

Computer Science & Information Technology

A table of figures can be created automatically from ____.

A. index entries B. captions C. page numbers D. figure numbers

Computer Science & Information Technology