Chapter 8 Flashcards
1
Q
Column index/row index
A
You can think of a two-dimensional array as an array that consists of tows. Each row is an array that contains the values. The rows can be accessed using the index, conveniently called a row index. The values in each row can be accessed through another index called a column index.
2
Q
multidimensional array/nested array
A
An array that contains another array that may contain another array.
3
Q
two-dimensional array
A
An array that contains another array.