Question: What happens if you apply DFS on a graph with cycles without tracking visited nodes?
Options:
Correct Answer: It will enter an infinite loop.
Solution:
If DFS is applied on a graph with cycles without tracking visited nodes, it will enter an infinite loop, revisiting the same nodes.