Question: In BFS, which node is visited first?
Options:
Correct Answer: The first node added to the queue
Solution:
In BFS, the first node added to the queue is visited first, as BFS explores all neighbors at the present depth prior to moving on to nodes at the next depth level.