Question: What is the time complexity for deleting an element from an AVL tree?
Options:
Correct Answer: O(log n)
Solution:
Deleting an element from an AVL tree also takes O(log n) time, as it may require rebalancing.