Question
Hi, Can you please Create a student class in JAVA The Student has GPA: double, graduate year: int, course total: int, course grades: (open) and
Hi,
Can you please Create a student class in JAVA
The Student has GPA: double, graduate year: int, course total: int, course grades: (open) and a few methods: ExtendGraduYear(int newYear): void; AddGrade(int year, String term, String grade): void; showTranscript(): void. (A student can take 4 courses per semester, before you add a course, the registry office will check if you max. out. The course grades have a "list" of all the courses you have taken. Use linked list to add courses . The showTranscript() method will print out all your courses with grades.
you must ask the user graduate year, total number of courses taken, names of the courses taken(course grades), The course he/she wants to add, the term in which the student wants to add the course. The variable listed in the student class must be private.
if the student has less than 4 courses registered in the given term, then only he/she would be able to add the courses they want to add. Otherwise print "sorry you won't be able to add anymore courses."
Make the code as simple as possible for thumbs up.
Thankyou
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