package Lect27Arrays2D; public class TwoDimArrayEx1 { public TwoDimArrayEx1() { int maxRows=2, maxColumns=3; // Reference variable representing the two-dim array int[][] scores; // Creating the array of references to array objects scores = new int[maxRows][]; // Creating each of the integer arrays for (int row=0; row