Question: What is the primary advantage of using a doubly linked list over a singly linked list?
Options:
Correct Answer: Easier traversal in both directions
Solution:
A doubly linked list allows traversal in both directions, making certain operations easier compared to a singly linked list.