Answer:
When the list is small the sequential search is faster than a binary search. With a large list the binary search wins the race.
A binary search requires the list to be in sort order, a sequential search does not.
A sequential search is a brute force method.
A binary search is a divide and conquer method.