You can export data to a(n) _____ format.
A. Word document
B. HTML document
C. Excel workbook
D. all of the above
Answer: D
Computer Science & Information Technology
You might also like to view...
Many computer users and some operating systems call subdirectories ____.
A. folders B. files C. volumes D. databases
Computer Science & Information Technology
Label the elements of three-by-five two-dimensional array sales to indicate the order in which they’re set to zero by the following program segment:
``` for (int row = 0; row < sales.length; row++) { for (int col = 0; col < sales[row].length; col++) { sales[row][col] = 0; } } ```
Computer Science & Information Technology