Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Q1 Operator Overloading 10 Points You are TAing Underwater Basket Weaving 101, and the professor asked you to compare the average scores of two students.
Q1 Operator Overloading 10 Points You are TAing Underwater Basket Weaving 101, and the professor asked you to compare the average scores of two students. 1. Create a Python class called Student and a constructor with three parameters: 91, 92, 93 (each representing the integer scores received on quizzes) 2. Create two instances of the Python class Student, called Ben and Jerry, with the first having integer arguments: 98,87,90 and the second having integer arguments: 80,90,91 (to represent the students' scores on each of the quizzes) 3. Compare the two student instances using the ">" (greater-than) operator and an if-else statement. If Ben has a higher score average, print his name; otherwise, print Jerry. Notes: 1) The ">" operator is not supported between instances of Student. You will need to create a rich comparison method inside the Student class to overload the ">" operator. The method should calculate each student's average score and return True if the first student's average score is higher and False otherwise. 2) You will have two if-else statements, one inside the class method and one below the class instances Ben and Jerry that you created
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started