Write a program that prompts the user to input the last names and final grades for 15 students. Assume that last names do not contain spaces. Final grades are whole numbers between 0 and 100. You must validate all grades inputted by the user to ensure they are between 0 and 100. In case of an invalid grade, the user should be prompted to re-enter that grade. Once all the 15 names and grades are read, the program must then display the 15 students and their corresponding grades sorted by grades, in ascending order. The program must then calculate and display the average of all 15 grades, the highest grade, the lowest grade and the median grade.
1. Program output should look like the sample output provided.
2. Your program must use two one-dimensional arrays: one array to store the last names and another array to store the grades.
3. You may use functions in your program, but you do not have to.
4. Your program should be well organized and following programming conventions and best practices.