Multiple choice

 Traverse the list from the beginning and compare each element of the list with the given element, to be searched is called………..

  1. Sorted list

  2. Linear list

  3. Linked list

  4. Unsorted list

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

Linear search involves starting from the first element and sequentially checking each one until a match is found. This approach is necessary for unsorted lists since there's no order to exploit for faster searching. Sorted lists enable binary search, and linked lists are just an implementation structure.