Multiple choice technology architecture

Which of the following data structure is linear data structure?

  1. Trees

  2. Graphs

  3. Arrays

  4. None of above

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

Arrays store elements sequentially in contiguous memory locations, where each element can be accessed directly by its index. This linear organization distinguishes them from non-linear structures like trees and graphs, where elements have multiple connections and hierarchical relationships.