Match the following terms to their descriptions:

I. row in an Excel table A. increases the number of
columns
II. creating a table from existing data in a range B. increases the number of rows
III. converting a table back into a range C. restores Range tools
IV. Adding a record to a table D. enables unique table tools
V. adding a field to a table E. represents a record.

E, D, C, B, A

Computer Science & Information Technology

You might also like to view...

Which of the statements is true about the following code snippet?

``` int[] array = new int[25]; array[25] = 2; ``` a) The integer value 2 will be assigned to the last index in the array. b) The integer value 25 will be assigned to the second index in the array. c) The integer value 25 will be assigned to the third value in the array. d) This code will result in a compile-time error. e) This code will result in a run-time error.

Computer Science & Information Technology

To detect exceptions and take corrective action, the ____ structure is used.

A. Try-Catch B. Try-Code C. Catch-Error D. Try-CatchError

Computer Science & Information Technology