Question: Given the code below: public class Class1 { public static void main (String [] args) { int[][] list = { {9, 8}, {6, 5}, {3,
Given the code below:
public class Class1 {
public static void main (String [] args) {
int[][] list = { {9, 8}, {6, 5}, {3, 2}, {7, 7} };
a. What is the value of list.length _______________
b. What is the value of list[0].length _______________
c. Hand-write a loop to print every element of the array, list.
d. Hand-write a loop to print every element of the second row of the Array
e. Hand-write a loop to print every element of the first column of the Array
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
