A Sequential Search

A sequential search is a search algorithm for searching a set of unsorted data for a particular value. In sequential search, we start from the beginning of the list, scan down the list, until the desired key is found or we have reached the end of the end of the list.
We have the following conclusions for a sequential search: