Question: How do you perform a left rotation on a node in an AVL tree?
Options:
Correct Answer: Make the right child the new root of the subtree
Solution:
A left rotation involves making the right child the new root of the subtree and adjusting the left child accordingly.