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 is a **** searching algorithm that works best on unsorted collections of data.

In a linear search, the worst-case scenario occurs when the target item is **** or not in the list.

Linear search is also called **** search because it checks the items one by one.