Question: What is the main advantage of using a binary tree over an array for dynamic data?
Options:
Correct Answer: Dynamic size
Solution:
Binary trees can grow and shrink dynamically, allowing for efficient insertions and deletions, unlike arrays which have a fixed size.