Read the Question carefully and solve it.
Question:

Write a pseudocode to perform a linear search on a one-dimensional array that stores the names of five students.
The program should:

  1. Ask the user to enter the names of five students and store them in an array.

  2. Ask the user to input a name to search for.

  3. Search the array to find a match for the entered name.

  4. Display the message “Student found at position X” if the name exists, or “Student not found” if it does not.