Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this problem, using multiple functions to complete the problem and using for loops are encouraged. I've solved half of this problem but would like

image text in transcribedimage text in transcribed

For this problem, using multiple functions to complete the problem and using for loops are encouraged.

I've solved half of this problem but would like to see the problem worked out fully.

Incorporating comments into the program that describe what you did in the problem would be a great helping factor so I can understand what is happening.

I greatly appreciate your help and time. Thank you.

Problem 1 Occasionally, instructors will drop the lowest score from a series of scores on quizzes or homework assignments. Unfortunately for you, I'm not one of those instructors. On the other hand, I know instructors who would like to employ this policy but can't do the math. To encourage this sort of generosity among instructors, write a function called printAverages that expects a two-dimensional table of integers (implemented as a list of lists) as its only parameter, where each row of the table contains the quiz scores for a student. For each row of the table, your function should compute the average of all but the lowest score in the row and print that average. For example, given an table of quiz scores that looks like this: col 0 2 3 4 row 100 100 75 10 100 100 1 80 70 65 2 10 10 your printAverages function should print this: Average for row 0 is 100.0 Average for row 1 is 72.5 Average for row 2 is 7.5 You may assume that no quiz score is less than 0 or greater than 100. The values may be either integers or floating point numbers. You may also assume that every row contains

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

Beginning ASP.NET 2.0 And Databases

Authors: John Kauffman, Bradley Millington

1st Edition

0471781347, 978-0471781349

More Books

Students also viewed these Databases questions