Which Java statement below correctly declares and creates a two-dimensional arra
ID: 3920990 • Letter: W
Question
Which Java statement below correctly declares and creates a two-dimensional array of integers called nums with 4 rows and 5 columns?
Reset Selection
Question 2 of 3
1
5
7
8
9
2
4
3
5
7
8
7
0
8
3
13
7
77
3
1
Question 3 of 3
1
5
7
8
9
2
4
3
5
7
8
7
0
8
3
13
7
77
3
1
for (int i = 0; i < nums.length; i++) {
for (int j = 0; j < nums[i].length; j++) {
System.out.print(nums[j][i] + " ");
}
System.out.println();
}
A. int[][] nums = new int[5][4]; B. int[4][5] nums; C. int[] nums = new int[4][5]; D. int[][] nums = new int[][]; E. int[4][5] nums = new int[][]; F. int[][] nums = new int[4][5];Explanation / Answer
Question 1:
Answer: F. int[][] nums = new int[4][5];
Quesion 2:
Answer:A. System.out.println(nums[3][2]); will print large value 77
Question 3:
Answer: B.
1 2 8 13
5 4 7 7
7 3 0 77
8 5 8 3
9 7 3 1
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.