Suppose a list of increasing integers is 2,4,6,8,10. Suppose we conduct the binary search algorithm on this list where we search for 8.
a) The algorithm will find 8 at the third position.
b) The algorithm will find 8 at the fourth position.
c) The algorithm will find 8 at the second position.
d) The algorithm will find 8 at the fifth position.