Answer:
A. It uses binary numbers in its algorithm
Step-by-step explanation:
A Binary search is a type of algorithm designed to look through only a sorted array of data for a particular item.
It is more efficient (faster) than sequential search since the algorithm doesn't have to look up the entire array of data, but simply repeatedly divide in half the section of the array that could contain the searched item.