Multiple choice technology architecture

Which of the following data structure can't store the non-homogeneous data elements?

  1. Arrays

  2. Records

  3. Pointers

  4. None

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

Arrays are designed to store homogeneous data elements - all elements must be of the same type. Records can store heterogeneous data (different types), pointers store addresses (not data elements per se), and 'None' is incorrect. Therefore Arrays is the correct answer.