Output? int[][] a = new int[][] {{1, 2},{3, 4, 5},{0}}; int[][] b = a; b[0] = new int[] { 5, 5, 5 }; System.out.println(a[0].length);