subject

Grade calculator: Average score on three exams. Load default template... 1 examl grade = float(input('Enter score on Exam 1 (out of 100):\n')) 2 exam2_grade = float(input('Enter score on Exam 2 (out of 100):\n')) 3 exam3 grade = float(input('Enter score on Exam 3 (out of 100):\n')) 5 overall_grade = (exami_grade + exam2_grade + exam3_grade) / 3 7 print("Your overall grade is:', overall_grade) Run Feedback? Create a different version of the program that: 1. Calculates the overall grade for four equally-weighted programming assignments, where each assignment is graded out of 50 points. Hint: First calculate the percentage for each assignment (e. g., score / 50), then calculate the overall grade percentage (be sure to multiply the result by 100).
2. Calculates the overall grade for four equally-weighted programming assignments, where assignments 1 and 2 are graded out of 50 points and assignments 3 and 4 are graded out of 75 points
3. Calculates the overall grade for a course with three equally-weighted exams (graded out of 100) that account for 60% of the overall grade and four equally-weighted programming assignments (graded out of 50) that account for 40% of the overall graded. Hint: The overall grade can be calculated as 0.6* average Exam Score +0.4* average ProgScore.
4. Extend the program to support the grading scheme for one or all of the courses.

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 18:30
Which number on the image above correctly indicates the name of a folder in this url? a.1b.2c.3d.4
Answers: 2
question
Computers and Technology, 21.06.2019 21:30
Write code using c . (take input from user) calculate the size of a given file in kbs. in this task you will complete the function with the following prototype: float get_file_size(char * filename); the function takes the file name (address to the start of a null terminated character array) as input. the function should then open the file and find the number of bytes it contains till eof. the number of bytes divided by 1024 will give the size in kbs. if the file cannot be opened the function should return -1.
Answers: 2
question
Computers and Technology, 22.06.2019 19:30
When creating a presentation in libre office impress, where does the editing of slides take place? a. the slides panel b. the center panel c. the tasks panel, under the masters pages tab d. the tasks panel, under the layouts tab
Answers: 3
question
Computers and Technology, 23.06.2019 09:00
Which best describes the role or restriction enzymes in the analysis of edna a. to break dna into fragments that vary in size so they can be sorted and analyzed b. to amplify small amounts of dna and generate large amounts of dna for analysis c. to purify samples of dna obtained from the environment so they can be analyzed d. to sort different sizes of dna fragments into a banding pattern that can be analyzed
Answers: 1
You know the right answer?
Grade calculator: Average score on three exams. Load default template... 1 examl grade = float(input...
Questions
Questions on the website: 13722362