
String a[][]=new String[10][20];
The above line how many objects are created.

Only one array object is created on the heap which is referenced by variable a. Note that , above statment does not call create new instance using new keyword nor assigned any value to string array. hence only one object is created on the heap
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.