Java - Arrays
What will be the output of this code?
int[][] matrix = new int[2][2]; matrix[0][1] = 10; matrix[1][0] = 20; System.out.println(matrix[0][1] + matrix[1][0]);
