Q120
What does the following piece of code do? public void func(Tree root) func(root.left()); func(root.right()); System.out.println(root.data());
A.
Preorder traversal
B.
Inorder traversal
C.
Postorder traversal
AnswerD.
Level order traversal
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board