- What Does The Following Code Display Int Mygrid 1 2 3 4 5 6 System Out Println Mygrid 1 2 Select 1 (51.45 KiB) Viewed 9 times
What does the following code display? int [][] myGrid = {(1,2), (3,4},{5,6}}; System.out.println(myGrid [1][2]); Select
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
What does the following code display? int [][] myGrid = {(1,2), (3,4},{5,6}}; System.out.println(myGrid [1][2]); Select
What does the following code display? int [][] myGrid = {(1,2), (3,4},{5,6}}; System.out.println(myGrid [1][2]); Select one A. 2 B. 3 C4 D. 6 OE. nothing this is an error k