Question: What is the primary advantage of binary search over linear search?
Options:
Correct Answer: It has a better time complexity
Solution:
The primary advantage of binary search is its better time complexity of O(log n) compared to linear search\'s O(n).