question archive You received a data file named "students
Subject:Computer SciencePrice: Bought3
You received a data file named "students.txt" from the admission office of the university. Each line in the file is a record of a student consisting of the student first name (string) followed by his/her GPA (double) followed by a letter code, either F or M (char). The letter code F is used for female students and M for male students. Assume the number of lines in the file is unknown. Write a program that reads the first name, the GPA and the letter code for every student in the file and display on screen the following: (a) The number of students named AHMED. (b) The number of students whom GPAs are above 3.0. (c) The name that has the maximum GPA. (d) The average GPA for female and male students separately.