Question: In a Red-Black tree, what is the maximum height of the tree in terms of the number of nodes n?
Options:
Correct Answer: 2 * log(n)
Solution:
The maximum height of a Red-Black tree is 2 * log(n), ensuring that the tree remains balanced.