Question: What is the primary advantage of using a binary tree over a linked list for data storage?
Options:
Correct Answer: Faster access time for sorted data
Solution:
A binary tree allows for faster access times for sorted data compared to a linked list, especially for search operations.