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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started