Question: What is the worst-case time complexity for deleting a node from a Red-Black tree?
Options:
Correct Answer: O(log n)
Solution:
The worst-case time complexity for deleting a node from a Red-Black tree is O(log n) due to its balanced structure.