Linear search checks every item in the list and has a worst-case **** of O(n).

In a linear search, if the target item is not found, the algorithm **** through every item in the list before stopping.

In a linear search, the average time complexity is **** of O(n), where n is the number of items in the list.

In a linear search, the items are checked **** until the target item is found.

The linear search algorithm starts at the **** of the list and checks each item in turn until the target item is found.