Question: What is a key difference between BFS and DFS?
Options:
Correct Answer: BFS explores nodes level by level, DFS explores as far as possible along a branch.
Solution:
BFS explores nodes level by level, while DFS explores as far as possible along a branch before backtracking.