Question: How does an AVL tree maintain balance after an insertion?
Options:
Correct Answer: By performing rotations.
Solution:
An AVL tree maintains balance after an insertion by performing rotations (single or double) to ensure the height difference property is satisfied.