InterviewSolution
Saved Bookmarks
| 1. |
How many subscript used in two dimensional Array? |
|
Answer» two subscriptsTwo-dimensional (2D) arrays are INDEXED by two SUBSCRIPTS, one for the row and one for the column. Each element in the 2D array MUST by the same type, either a primitive type or OBJECT type. |
|