Multiple choice technology programming languages

A two dimension array can also be thought of

  1. Table

  2. Array of Arrays

  3. list of arrays

  4. both a and b

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

A two-dimensional array can be conceptualized in multiple equivalent ways: as a Table (with rows and columns), as an Array of Arrays (where each element is itself an array), or as a list of arrays. All three perspectives are valid and useful in different contexts - the table view is intuitive for data representation, while the array-of-arrays view reflects the underlying memory structure. Since both 'Table' and 'Array of Arrays' are correct interpretations, option D ('both a and b') is the right choice.