Respuesta :
Answer:
rows and columns, or matrix
Explanation:
Two-dimensional 2D arrays are being indexed with the help of two subscripts. The first one is for the row and the second one if for the column. And each of the elements of the 2D array must be of the one kind like they all can be an object type or they all can be of primitive type.
Like:
int A[3][3];
The above is the 2-dimensional array in C++, and elements are of type int, which is a primitive data type.
Two-dimensional array indexes are listed by two subscripts, where one for the row and the other is the column.
What is Two-dimensional array indexes?
Two-dimensional (2D) arrays are known to be indexed that has two subscripts.
Note that one of the subscript is used for the row and the other is used for the column. All of the element in the 2D array have to be of the same type, whether a primitive type or object type.
Learn more about Two-dimensional array from
https://brainly.com/question/26104158