Answer:
B. False
Step-by-step explanation:
Binary search does not work in an unsorted list, therefore it will not return the correct answer in 0(n) time.
For an unsorted list, linear search is the better way of searching for algorithms.
For a binary search, it goes through a sorted list to locate a desired element. It repeats its processes until it picks the correct element it is looking for.