public class Test2DArray { public static void main (String[] argv) { int size = 5; int[][] identMatrix; // Create the first dimension - an array identMatrix = new int[size][]; // Create the second dimension - an array for each // element of the first dimension. for (int i=0; i