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 linked list. The list remains sorted at all times in descending order Input the name of the input file and press enter: in.txt Input the name of the output file and press enter: out.txt bob 10 2.00 bob 10 2.00 doug 20 1.50 bob 10 2.00 doug 20 1.50 alice 30 3.50 alice 30 3.50 bob 10 2.00 doug 20 1.50 frank 23 2.30 alice 30 3.50 frank 23 2.30 bob 10 2.00 doug 20 1.50 The input file used was: in.txt The output file used was: out.txt This program has ended normally.