Multiple choice Pre-order is nothing but depth first order breadth first order topological order linear order Reveal answer Fill a bubble to check yourself A Correct answer Explanation Pre-order traversal (Root, Left, Right) is a form of depth-first search where the root is visited before its subtrees. DFS explores as deep as possible along each branch before backtracking.