Which of the following data structures are based on the concept of dynamic…
2025
Which of the following data structures are based on the concept of dynamic memory allocation?
- A.
Array
- B.
Stack
- C.
Linked List
- D.
Queue
Attempted by 528 students.
Show answer & explanation
Correct answer: C
In a linked list, memory for nodes is allocated dynamically, i.e., as and when required. Hence, the size of the linked list can increase or decrease as per the needs at runtime.