Question: Which traversal method is more memory efficient for sparse graphs?
Options:
Correct Answer: DFS
Solution:
DFS is generally more memory efficient for sparse graphs as it can use less space compared to BFS, which needs to store all nodes at the current level.