True/False: An element of a two-dimensional array is referenced by the array name and two subscripts, first the element row number and then the element column number.

Respuesta :

Answer:

This is true statement.

Step-by-step explanation:

The given statement is true.

We know that the first element of the array is a[0], the second element is a[1], and so on.

The subscript that specifies single elements of an array is an integer expression written/denoted in square brackets. The elements of a 2D array are arranged in rows and columns.