Multiple Choice
A binary tree traversal method that visits the root first,and then recursively traverses the left and right subtrees is called
A) top down traversal
B) priority order traversal
C) preorder traversal
D) postorder traversal
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q31: The predecessor of a node in a
Q32: A complete binary tree with N nodes
Q33: To add a new element X to
Q34: A binary tree with height 1 must
Q35: A node in a binary tree that
Q37: To find the minimum node in a
Q38: A ternary tree is like a binary
Q39: Let X be a node in a
Q40: Traversing a binary search tree in inorder<br>A)
Q41: Assuming a Node class<br>class Node<br>{<br>int element;<br>Node left,right;<br>Node(int