Answer:
Sequential search is a search which will search the element in sequential order
Explanation:
Algorithm:
start
1.read elements into the array
2.read the element to find out
3. check the search element with first element of the array. If it matches exit
4.if no match, then increment the counter and repeat step 3
5.print element found
Exit
flowchart attached as an attachement