Question: Which of the following is a key advantage of binary search over linear search?
Options:
Correct Answer: Efficiency
Solution:
Binary search is more efficient than linear search, especially for large datasets, due to its O(log n) time complexity.