Question: Which of the following statements about binary search is false?
Options:
Correct Answer: It can be used on linked lists
Solution:
Binary search cannot be effectively used on linked lists due to their non-contiguous memory allocation, making it inefficient compared to arrays.