Case-Based Critical Thinking QuestionsCase 10-1James owns an auto parts store. He wants to insert a table into his inventory report to keep the product names, quantities, and prices of the parts organized. He asks his friend Leon for help. James is having some difficulty formatting his table. Leon tells him that he should use _____ to enter a single line of parallel text in each column, so his inventory will look professional.

A. columns
B. tables
C. tabs
D. F2 key

Answer: C

Computer Science & Information Technology

You might also like to view...

Queries are best performed by a spreadsheet program

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following sets of statements creates a multidimensional array with 3 rows, where the first row contains 1 value, the second row contains 4 items and the final row contains 2 items?

a) int[][] items; items = new int[3][?]; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2]; b) int[][] items; items = new int[3][]; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2]; c) int[][] items; items = new int[?][?]; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2]; d) int[][] items; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2];

Computer Science & Information Technology