Question: What happens if binary search is applied to a linked list?
Options:
Correct Answer: It works but is inefficient
Solution:
Binary search cannot be efficiently applied to a linked list because it requires random access to elements, which linked lists do not provide.