About Question enthuware.ocajp.i.v7.2.1229 :
Posted: Fri Jun 27, 2014 2:09 am
Mr. Paul, could you place explain the declaration
just like
,int a[][][][] = new int[4][3][3][5];

just like
Thanxint a[ ][ ] = new int [5][4] ;
This will create an array of length 5. Each element of this array will be an array of 4 ints.