Question: Which data structure is more memory efficient for storing a list of elements with frequent insertions and deletions?
Options:
Correct Answer: Linked List
Solution:
Linked lists are more memory efficient for frequent insertions and deletions as they do not require resizing like arrays.