Question: How does the insertion operation in an AVL tree differ from that in a Red-Black tree?
Options:
Correct Answer: AVL trees require more rotations
Solution:
Insertion in an AVL tree may require more rotations to maintain balance compared to a Red-Black tree, which allows for a more relaxed balancing approach.