Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

in python. Given the following list of student test scores, apply a class curve to each score. The class curve is as follows: 90 or

in python. Given the following list of student test scores, apply a class "curve" to each score. The class curve is as follows: 90 or above: no curve 80 to 90: +2 points 70 to 80: +5 points Lower than 70: +8 points Use the below test scores list: grades = [93, 74, 66, 98, 34, 75, 79, 83, 84, 91, 12, 69, 72] Pseudo code: for each score in list, If grade is greater than or equal to 90, move on to next score. Else if score is greater or equal to 80 but less than 90, add 2 points. Else if score is greater or equal to 70 but less than 80, add 5 points. Else, add 8 points Print out the new grades.

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

Database Concepts

Authors: David Kroenke, David Auer, Scott Vandenberg, Robert Yoder

9th Edition

0135188148, 978-0135188149, 9781642087611

More Books

Students also viewed these Databases questions

Question

What is meant by a green or sustainable strategy?

Answered: 1 week ago