Question: Which traversal method can be more memory efficient in sparse graphs?
Options:
Correct Answer: DFS
Solution:
DFS can be more memory efficient in sparse graphs because it does not need to store all the nodes at the current level, unlike BFS.