Multiple choice

____ requires only one index to access an individual element of the array.

  1. Two-dimensional array

  2. One- dimenstrional array

  3. Multi dimensional array

  4. Single ten array

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

One-dimensional arrays require only one index to access an element (like arr[5]). Two-dimensional arrays need two indices (arr[3][2]), and multidimensional arrays need even more. The term 'One-dimenstrional' has a typo but is clearly intended.