Question: In which scenario would a Red-Black tree be preferred over an AVL tree?
Options:
Correct Answer: When frequent insertions and deletions are expected.
Solution:
Red-Black trees are generally preferred when there are frequent insertions and deletions because they are less rigidly balanced than AVL trees, allowing for faster insertions and deletions.