Question: What is the average time complexity of binary search?
Options:
Correct Answer: O(log n)
Solution:
The average time complexity of binary search is O(log n), as it consistently halves the search space.