Multiple Choice
Postorder traversal of a binary tree
A) first visits the root,then recursively traverses the left and right subtree
B) recursively traverses the left subtree,then visits the root,then traverses the right subtree
C) recursively traverses the left subtree,then traverses the right subtree,then visits the root
D) visits all the nodes according to their natural order
Correct Answer:

Verified
Correct Answer:
Verified
Q8: Assuming a Node class<br>class Node<br>{<br>int element;<br>Node left,right;<br>Node(int
Q9: A complete binary tree with N nodes
Q10: Consider the operation of deleting the root
Q11: A binary tree traversal method that recursively
Q12: A binary tree with no root<br>A) must
Q14: Let X be a node in a
Q15: The level of a node X in
Q16: A complete binary tree with N nodes
Q17: An empty binary tree has height<br>A) -1<br>B)
Q18: To find the minimum element stored in