Computer Science, asked by amithmanoj321, 2 months ago

27. In binary search method(sorted array-ascending), if element to be searched is
lesser than mid element then searching should happen in ----------- half of the
array.
A. right
B. neither right half nor left
C. either right half or left
D. left

Answers

Answered by BrainlyProgrammer
3

Answer:

Option D: left

Explanation:

Binary search always works on sorted array whether ascending or descending.

but the question says array is sorted in ascending order so searching will happen in left half of the array.

Similar questions