Question: Which data structure is more memory efficient for storing a list of items with frequent insertions and deletions?
Options:
Correct Answer: Linked List
Solution:
Linked lists are more memory efficient for frequent insertions and deletions compared to arrays, which may require resizing.