Answer:
Hi!
The correct answer is:
The binary search algorithm will cut the portion of the array being searched in half each time it fails to locate the search value.
Explanation:
Important! The elements of the array have to be in order to perform a binary search.
For example.
An array of 10 position. Each position represent the value of the element.
If you have to seek the number 1:
1 2 3 4 5 6 7 8 9 10
1 2 3 4 --- 5 6 7 8 9 10
1 --- 2 3 4 5 6 7 8 9 10
1 --- 2 3 4 5 6 7 8 9 10