When creating a 2D array with say 5 rows and 5 columns, do you subtract one when initializing it?
String [][] array;
array = new String [4][4];
Would this create a 5 x 5 array since when you index it starts from 0? Also is there a way to set an array to blank, so for strings it would have all spots containing "" ?
0tolength - 1. Yournew String[4][4]would have valid indices0,1,2and3. That is a total of4(per dimension).