...

/

Quiz on Graph Algorithms

Quiz on Graph Algorithms

Test your understanding of graph algorithms.

We'll cover the following...
Technical Quiz
1.

What is the correct breadth-first traversal order for the following graph?

  • f = {a, c, d}
  • a = { }
  • c = {e, b}
  • b = {d}
  • d = {c}
  • e = {f}
A.

f a c d e b

B.

a b c d e f

C.

a b c d e f

D.

f e d c b a


1 / 9