Consider the following statements about this graph:
- Starting at node A, a DFS visiting order could be: A, B, E, F, C, D, G and a BFS visiting order could be: A, B, C, D, E, F, G
- Starting at node A, a BFS visiting order could be: A, B, E, F, C, D, G and a DFS visiting order could be: A, B, C, D, E, F, G
- There is at least one back edge on the graph, and the back edges are always the same, no matter what the DFS starting point is
Now select the alternative that lists only the true statements:
- I, III
- II, III
- II
- I
- None of the above
Original idea by: Victória Pedrazzoli