Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

PYTHON In ISM 301, student grade is made of assignments (200 points possible), examz (200 points possible), and project (100 points possible). So a total

PYTHON

In ISM 301, student grade is made of assignments (200 points possible), examz (200 points possible), and project (100 points possible). So a total of 500 points possible. We need a program to help students figure out their standing in the course.

First, we would like to input points earned by the student for the three parts. A total is calculated based on the inputs. Based on the percentage, we would output different messages. See table below. The percentage is the total points of the student against 500.

Percentage Message

>=85% Good job! Keep up the good work!

>=60% Work harder!

<60% Get help!

Testing is a big part of programming. In this program, there are three potential messages. Think about the scenarios that will producing these messages and test them each. You even can device a test plan, such as the following:

Input Should produce:

Max, 134, 100, 40 54.800000000000004% Get help!

Jack, 190, 190, 96 95.19999999999999 % Good job! Keep up the good work!

Joey, 180, 160, 80 84.0 %Work harder!

Example run:

What is your name? Joe

enter points for assignment >190

enter points for examz >190

enter points for project >96

95.19999999999999%

Good job! Keep up the good work!

Please use python! Thank you!

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

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

9th Edition

B01JXPZ7AK, 9780805360479

More Books

Students also viewed these Databases questions

Question

LO10.3 Explain how demand is seen by a purely competitive seller.

Answered: 1 week ago