Using Multidimensional Arrays
In this exercise, you use what you have learned about using multidimensional arrays to answer Questions 1-3.
1. A two-dimensional array declared as int myNums[][] - new int[6] [2] ; has how many rows?
___________________________________________________________________________
2. A two-dimensional array declared as int myNums [][] new int [6] [2] ; has how many columns?
___________________________________________________________________________
3. Consider the following array declaration: int myNums [][]- new int[6] [2] ;
Are the following Java statements legal?
number = myNums [5] [3] ; _____________________________________________
number = myNums [0] [1] ; _____________________________________________
number = myNums [1] [2] ; _____________________________________________
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.