Question: What is the worst-case time complexity for deleting a node from an AVL tree?
Options:
Correct Answer: O(log n)
Solution:
The worst-case time complexity for deleting a node from an AVL tree is O(log n) due to the need to maintain balance.