Vidyalelo
Data Structure · Q11

Binary Search Trees(B Tree)

Programming · Data Structure · question 11

Q11

What is the result of a successful search operation in a BST when the searched element is not present?

A.
The search will return the node containing the element.
B.
The search will return the parent node of the searched element.
C.
The search will return a null pointer.
Answer
D.
The search will return the root node.

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board