In Excel, the electronic spreadsheet you work in is called a ____.
A. tablet
B. databook
C. numericsheet
D. worksheet
Answer: D
Computer Science & Information Technology
You might also like to view...
"Where the cable connects to a jack or a patch panel" defines which of the following?
A) Closet B) TCO C) Termination D) None of these answers are correct.
Computer Science & Information Technology
What will be the results after the following code is executed?
``` int[] x = { 55, 33, 88, 22, 99, 11, 44, 66, 77 }; int a = 10; if(x[2] > x[5]) a = 5; else a = 8; ``` a. a = 5 b. a = 8 c. a = 10 d. a = 13
Computer Science & Information Technology