Which of the following option has linear data structure?
2016
Which of the following option has linear data structure?
- A.
Turnery Tree
- B.
Binary Tree
- C.
Stack
- D.
Graph
Attempted by 245 students.
Show answer & explanation
Correct answer: C
A linear data structure arranges its elements sequentially or linearly, where each element is connected to its previous and next element. A Stack follows this sequential arrangement. Conversely, trees and graphs are non-linear data structures with hierarchical or interconnected relationships. Therefore, Option C is correct.