Question: What is the time complexity of binary search in the average case?
Options:
Correct Answer: O(log n)
Solution:
In the average case, binary search divides the search space in half with each iteration, leading to a time complexity of O(log n).