int[][] matrix = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};Given the above definition, what would each of the following print to the command line if run.
System.out.println("matrix[1][1]: " + matrix[1][1]);
System.out.println("matrix[0][2]: " + matrix[0][2]);
for(int i = 0; i < matrix.length; i++) { System.out.print(matrix[i][0] + " "); }