Question: In a binary tree, what is the time complexity of searching for an element in the worst case?
Options:
Correct Answer: O(n)
Solution:
In the worst case, searching for an element in a binary tree can take O(n) time, especially if the tree is unbalanced.