Answer:
The answer is "Option b".
Step-by-step explanation:
In a binary tree, searching is a process, in which all node will have a comparable key and respects its constraint that maybe the keys in a certain node is greater than keys in all node, and the right subtree of that nodes and shorter than with the links in all node throughout the rights subtree of that node.
- In traverse method, access all the tree nodes via the root, and afterward processing all subtrees iteratively are recognized as Travers prefix, that's why except option b all were wrong, which can be explained as follows:
- In pre-order traversal, first, we print left subtree, then root node, and at the last right subtree.