Java - Arrays
What is the output of the following Java code?
int[][] arr = {{1, 2, 3}, {4, 5, 6}};
System.out.println(arr[1][0]);int[][] arr = {{1, 2, 3}, {4, 5, 6}};
System.out.println(arr[1][0]);15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions