8.2 Traversing 2D Arrays
-
Incorrect
Correct
No Answer was selected
Invalid Answer
Vocabulary
Term | Definition |
---|---|
Row Major Order | The process of traversing a 2D array by accessing all elements in a row before moving on to the next row. |
Column Major Order | The process of traversing a 2D array by accessing all values at the first column in every row, before moving to the next column |