Question: If the size of the array is doubled, how does the time complexity of binary search change?
Options:
Correct Answer: It remains the same
Solution:
The time complexity of binary search is O(log n), which does not change with the size of the array.