Question: What is the main property of an AVL tree?
Options:
Correct Answer: It is a binary search tree with a balance factor of -1, 0, or 1.
Solution:
An AVL tree is a self-balancing binary search tree where the difference in heights between the left and right subtrees cannot be more than one.