Answered step by step
Verified Expert Solution
Link Copied!
Question
1 Approved Answer

Q 9 - Curve Grade ( 1 point ) Write a function to apply a very simple curve to an input grade. The function will

Q9- Curve Grade (1 point)
Write a function to apply a very simple curve to an input grade. The function will be called curve_grade and will take two parameters as inputs, in the order specified here:
points : the number of points a student earned on an assignment (int or float)
curve : the proportion of curve to apply to the student's points (int or float)
Within the function, the code will return curved_points. This code will apply the proportion specified in curve to the student's points.
For example, if curve is 0.1 and points is 100, the code in the funtion would multiply 100(points) by 0.1(curve) and add that back to the original points, return ing the value 110.
If points were 90 and curve was 0.05, the function would return 94.5.
image text in transcribed

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_2

Step: 3

blur-text-image_3

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

Spatio Temporal Database Management International Workshop Stdbm 99 Edinburgh Scotland September 10 11 1999 Proceedings Lncs 1678

Authors: Michael H. Bohlen ,Christian S. Jensen ,Michel O. Scholl

1999th Edition

3540664017, 978-3540664017

More Books

Students explore these related Databases questions

Question

List and explain the three Vs of Big Data.

Answered: 3 weeks ago