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?
Answer: C. Linked List — 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…
- A.
Array
- B.
Stack
- C.
Linked List
- D.
Queue
Attempted by 855 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.
Loading lesson…