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