Question: What is the worst-case time complexity for searching an element in a Red-Black Tree?
Options:
Correct Answer: O(log n)
Solution:
The worst-case time complexity for searching an element in a Red-Black Tree is O(log n) due to its balanced nature.