Question: Which of the following statements creates a multidimensional array with 3 rows, where the first row contains 1 item, the second row contains 4 items
Which of the following statements creates a multidimensional array with 3 rows, where the first row contains 1 item, the second row contains 4 items and the final row contains 2 items?
a)
int[][] items = {new int {1, null, null, null},
new int {2, 3, 4, 5},
new int {6, 7, null, null}};
b)
int[][] items = {new int {1},
new int {2, 3, 4, 5},
new int {6, 7}};
c)
int[][] items = {new int {1},
new int {2, 3, 4, 5},
new int {6, 7},
new int {});
d)
int[][] items = {new int {1},
new int {4},
new int {2}};
--Multi-dimensional arrays require two or more indices to identify particular elements. T OR F
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
