double[][] empSales = new double[5][];
?
The above statement declares a(n) ____ array.

A. insertion
B. sort
C. jagged
D. boolean


Answer: C

Computer Science & Information Technology

You might also like to view...

Which of the following statements correctly prints out the value that is in the memory address that the pointer p1 is pointing to?

a. cout << &p1; b. cout << p1; c. cout << int* p1; d. cout << *p1;

Computer Science & Information Technology

Draw a flowchart for the program fragments (no need to show start and stop)

``` LET sum = 0 LET count = 0 LET item = 0 DO UNTIL item = 9999 INPUT item IF item < 9999 THEN LET sum = sum + item LET count = count + 1 END IF LOOP LET average sum / count OUTPUT average ```

Computer Science & Information Technology

Actions that can be taken against an object or which an object can be directed to perform are stored as part of the object are properties.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The navigation buttons on a datasheet display the total number of fields in the datasheet.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology