What is the order in which nodes of this tree are visited in depth-first order?
Answer: D
In depth-first order, a node is visited and then its children are visited in order (same as preorder).
Contents Page-10 Prev Next Page+10 Index