Question: How does an AVL tree maintain balance after insertion?
Options:
Correct Answer: By performing rotations.
Solution:
AVL trees maintain balance by performing rotations (single or double) after insertions to ensure the balance factor remains within the allowed range.