Question: How do you perform a left rotation in an AVL tree?
Options:
Correct Answer: By moving the right child up and the current node down.
Solution:
A left rotation involves moving the right child of a node up to take its place, while the current node becomes the left child of the new root.