Question: What is the result of the following binary search on the array [1, 2, 3, 4, 5] for target 3?
Options:
Correct Answer: 2
Solution:
The target 3 is located at index 2 in the array [1, 2, 3, 4, 5].