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.

A linear search algorithm is an algorithm that looks at every in a list or an array until it finds the target value.

Linear search can be easily implemented using a **** loop to iterate through the items in the list.