Consider the following list. int list[] = {4, 8, 19, 25, 34, 39, 45, 48, 66, 75, 89, 95} When performing a binary search for 75, after the first comparison, the search is restricted to ____.
a) list[0]...list[6]
b) list[0]...list[7]
c) list[5]...list[11]
d) list[6]...list[11]