Question: Nested for loops provide sequential access to multidimensional array elements. To access a two-dimensional array one element at a time by rows (row-major access), use the counter of the outer loop as the row subscript. To access by columns (column-major access), use the counter of the outer loop as the column subscript.