Answered step by step
Verified Expert Solution
Question
1 Approved Answer
create an AWK program that takes a CSV (comma separated variable) file named on the command line and outputs a histogram of the grades in
create an AWK program that takes a CSV (comma separated variable) file named on the command line and outputs a histogram of the grades in the file. The first five fields of the input will look like: "lastname","firstname","id","section","grade"...
The output should be a series of lines like
100
99 **
98 ***
97
96 *
which indicate that there were 0 100s, 2 99s, 3 98s, 0 97s, and 1 96 in the input file.
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