Which of the following traversal in a binary tree is similar to depth first traversal?

Which of the following traversal in a binary tree is similar to depth first traversal? Correct Answer pre order

In DFS we keep on exploring as far as possible along each branch before backtracking. It terminates when all nodes are visited. So it is similar to pre order traversal in binary tree.
Bissoy MCQ

Related Questions

A tree is cut partially and made to fall on ground. The tree however does not fall completely and is still attached to its cut part. The tree top touches the ground at a point 10m from foot of the tree making an angle of 30°. What is the length of the tree?
Depth First Search is equivalent to which of the traversal in the Binary Trees?