Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

We are going to modify the Student class from Lab 9.1 to take parameters for first name last name, and gpa in the constructor. Implement

image text in transcribed
We are going to modify the Student class from Lab 9.1 to take parameters for first name last name, and gpa in the constructor. Implement the following: - A Student constructor that takes parameters for self, first, last, and gpa and sets the instance variables (see Section 9.5 - we do not need to set parameters to a value - see 2 nd example p. 406) Instance Methods (you should be able to copy most of these from 9.1 lab): - set_first(self, first) - set student's first name to parameter name - get_first(self) - return student's first name - set_last(self, first) - set student's last name to parameter name - get_last(self) - return student's last name - set_gpa(self, gpa) - set student's gpa to parameter gpa - get_gpa(self) - return student's gpa Ex: If a new Student object is created with Andrew, Woo, 3.6, the default return values are: Andrew for first name Woo for last name

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

Graph Databases

Authors: Ian Robinson, Jim Webber, Emil Eifrem

1st Edition

1449356265, 978-1449356262

More Books

Students also viewed these Databases questions

Question

Describe Table Structures in RDMSs.

Answered: 1 week ago