Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Writing a shell script which takes input from a CSV file as an argument to calculate the minimum grade for the final in order to
Writing a shell script which takes input from a CSV file as an argument to calculate the minimum grade for the final in order to pass the subject:
Min final grade = (Passing grade * (Mid term weight + Final weight) - Mid term weight * Midterm) / Final weight
Output:
The output should produce the same CSV file as above plus a col for Min final grade for passing the course
\begin{tabular}{|r|r|r|r|} \hline Midterm & Midterm weight & Final weight & \multicolumn{2}{l|}{ Passing grade } \\ \hline 56 & 25 & 35 & 50 \\ \hline 34 & 30 & 30 & 50 \\ \hline 56 & 25 & 35 & 45 \\ \hline \end{tabular} \begin{tabular}{|r|r|r|r|r|} \hline Midterm & Midterm weight & Final weight & Passing grade & Min final grade \\ \hline 56 & 25 & 35 & 50 & 46 \\ \hline 34 & 30 & 30 & 50 & 66 \\ \hline 56 & 25 & 35 & 45 & 37 \\ \hline \end{tabular}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started