Which of the following searches traverses sequentially to locate items?
-
Binary search
-
Logical search
-
Search field
-
Linear search
D
Correct answer
Explanation
Linear search traverses sequentially through a list to locate a specific item. It examines each element one by one from the beginning until the target is found or the list ends. This simple approach works on any list but is less efficient than binary search for large, sorted datasets.