Question: Programming Assignment ( Groups 1 or 2 ) Write a C program that does the following: 1 - Read the students information from input file

Programming Assignment (Groups 1 or 2)
Write a C program that does the following:
1- Read the students information from input file as follows.
First Name1 Last Name1 Test 1 Test 2 Final Exam
First Name2 Last Name2 Test 1 Test 2 Final Exam
First Name3 Last Name3 Test 1 Test 2 Final Exam q,q,q,
2- Find the Course score for each student by allocating 35% for Max(Test1, Test2),25% for Min(Test1, Test2) and 40% for the Final Exam. Round the course scores.
3- Find the letter grade for each student using the following criteria:
i.-100] A
ii.80-89 B
iii. 70-79 C
iv.[60-69]D
v.60F
4- Write the students names, Course Scores, Letter grades to an output file in increasing order of the course score. Use the QuickSort algorithm for sorting. Implement the QuickSort yourself; do not use any predefined QuickSort function in C.
First Name1 Last Name1 Course Score Letter Grade
First Name2 Last Name2 Course Score Letter Grade
First Name3 Last Name3 Course Score Letter Grade q,q,q,
Upload your source code, sample input file, and sample output file and a paragraph document about what worked and what didn't work to canvas under Homework 1.
Programming Assignment ( Groups 1 or 2 ) Write a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!