This is a program in Pascal which reads in a list of Student records (Name, age, and GPA) from a file. As each student is inputed, the records are stored in a list using an insertion sort. The list remains sorted at all times Input the name of the input file and press enter: in.txt Input the name of the output file and press enter: out.txt Reading in the next student record Reading in student name from input file Reading in student age from input file Reading in student gpa from input file Student read in from file: Student Name: doug Student Age: 20 Student GPA: 2.00 Insertion sorting this student into the array Current List: Student Name: doug Student Age: 20 Student GPA: 2.00 Reading in the next student record Reading in student name from input file Reading in student age from input file Reading in student gpa from input file Student read in from file: Student Name: bob Student Age: 20 Student GPA: 2.00 Insertion sorting this student into the array Current List: Student Name: bob Student Age: 20 Student GPA: 2.00 Student Name: doug Student Age: 20 Student GPA: 2.00 Reading in the next student record Reading in student name from input file Reading in student age from input file Reading in student gpa from input file Student read in from file: Student Name: frank Student Age: 20 Student GPA: 2.00 Insertion sorting this student into the array Current List: Student Name: bob Student Age: 20 Student GPA: 2.00 Student Name: doug Student Age: 20 Student GPA: 2.00 Student Name: frank Student Age: 20 Student GPA: 2.00 Reading in the next student record Reading in student name from input file Reading in student age from input file Reading in student gpa from input file Student read in from file: Student Name: alice Student Age: 20 Student GPA: 2.00 Insertion sorting this student into the array Current List: Student Name: alice Student Age: 20 Student GPA: 2.00 Student Name: bob Student Age: 20 Student GPA: 2.00 Student Name: doug Student Age: 20 Student GPA: 2.00 Student Name: frank Student Age: 20 Student GPA: 2.00 The input file used was: in.txt The output file used was: out.txt The program is done.