Question: Which traversal method is better for finding all paths between two nodes in a graph?
Options:
Correct Answer: DFS
Solution:
DFS is better for finding all paths between two nodes because it explores all possible paths until it reaches the destination.