Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

undefined a) Consider a file containing grade test grades for students called grades.txt file: Last, First, A/I,Testi, Test2, Test3 Smith, John, A, 90, 100,99 Ballard,

image text in transcribedimage text in transcribedundefined

a) Consider a file containing grade test grades for students called grades.txt file: Last, First, A/I,Testi, Test2, Test3 Smith, John, A, 90, 100,99 Ballard, Sue, I, 15, ,50 clark, Sally, A, 100, 50, Koen, Jack, I, 90, 100,99 Ball, Lucy, A, 100, 100, 100 Bently, Mark, A, 100,,100 The file is comma delimited. The first line is a header. The records contain Last Name, First Name, Active/Inactive file and several test scores. Ignore the heading line. For each Active student calculate their average grade for each student printing out the Students First Name followed by Last Name and average score. Display a heading at the beginning with a name for the report and headings for the columns of Name and Average. After all students have been processed display the number of active students and the average class test score. Format the output so that only 1 digit after the decimal point is shown and the averages scores line up on the decimal points. In this file, for example, the gawk program should print the following: $ gawk -f minor1.gawk grades.txt Student Average Test Scores Name Average John Smith 96.3 Sally Clark 50.0 Lucy Bali 100.0 Mark Bently 66.7 4 Students with average score of 78.2 Formatting properly in columns as shown is required. This gawk program file will be submitted to Canvas. a) Consider a file containing grade test grades for students called grades.txt file: Last, First, A/I,Testi, Test2, Test3 Smith, John, A, 90, 100,99 Ballard, Sue, I, 15, ,50 clark, Sally, A, 100, 50, Koen, Jack, I, 90, 100,99 Ball, Lucy, A, 100, 100, 100 Bently, Mark, A, 100,,100 The file is comma delimited. The first line is a header. The records contain Last Name, First Name, Active/Inactive file and several test scores. Ignore the heading line. For each Active student calculate their average grade for each student printing out the Students First Name followed by Last Name and average score. Display a heading at the beginning with a name for the report and headings for the columns of Name and Average. After all students have been processed display the number of active students and the average class test score. Format the output so that only 1 digit after the decimal point is shown and the averages scores line up on the decimal points. In this file, for example, the gawk program should print the following: $ gawk -f minor1.gawk grades.txt Student Average Test Scores Name Average John Smith 96.3 Sally Clark 50.0 Lucy Bali 100.0 Mark Bently 66.7 4 Students with average score of 78.2 Formatting properly in columns as shown is required. This gawk program file will be submitted to Canvas

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Manga Guide To Databases

Authors: Mana Takahashi, Shoko Azuma, Co Ltd Trend

1st Edition

1593271905, 978-1593271909

More Books

Students also viewed these Databases questions