Identify the non-linear data structures from among the following. (i) Linked…
2018
Identify the non-linear data structures from among the following.
(i) Linked List (ii) Stack (iii) Tree
Answer: B. Only (iii) — Linear data structures store elements sequentially, such as Linked Lists and Stacks. Non-linear data structures organize elements hierarchically without a…
- A.
Both (i) and (ii)
- B.
Only (iii)
- C.
Both (i) and (iii)
- D.
(i), (ii) and (iii)
Attempted by 1918 students.
Show answer & explanation
Correct answer: B
Linear data structures store elements sequentially, such as Linked Lists and Stacks.
Non-linear data structures organize elements hierarchically without a single sequence, like Trees.
Therefore, only item (iii) represents a non-linear data structure.
Loading lesson…