What type of one dimensional array contains another one dimensional array in each element, with each array capable of being a different length?
A. rectangular
B. matrix
C. jagged
D. table
Answer: C
Computer Science & Information Technology
You might also like to view...
SmartArt graphics display at the insertion point with two parts--the graphic itself and the Text Pane
Indicate whether the statement is true or false
Computer Science & Information Technology
What will be output from the following code:
``` public void t e s t 9 ( ) { int x = 1 2 ; int y = 0 ; while ( ! ( x < 10 j j y < 1 ) ) { x = x + 1 ; y = y + 1 ; System . out . p r i n t l n ( x + " , " + y ) ; } } ```
Computer Science & Information Technology