Tostring Method That Returns All The Information About A Student
The document describes creating two classes - Student and Course - to represent students and courses in a college management system. The Student class stores a student's ID, name, year level, and course, while the Course class stores a course's code, name, years, and college code. It also describes creating a GUI application that allows users to input, update, and view data for both students and courses, as well as generate various reports including lists of students, courses, and enrollments.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
30 views1 page
Tostring Method That Returns All The Information About A Student
The document describes creating two classes - Student and Course - to represent students and courses in a college management system. The Student class stores a student's ID, name, year level, and course, while the Course class stores a course's code, name, years, and college code. It also describes creating a GUI application that allows users to input, update, and view data for both students and courses, as well as generate various reports including lists of students, courses, and enrollments.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
Create a class called Student to represent a student.
The Student class should include
the following information student ID (a 10-digit String), last name (a String), first name (a String), year level (an int), and course code (a String). Your class should have the following: - a constructor (this may be overloaded) - setter methods - getter methods - toString method that returns all the information about a student Create a class called Course that represents a college course. The Course class should include the following information course code (a String), course name (a String), nYears (an int), and college code (a String). Your class should have the following: - a constructor (this may be overloaded) - setter methods - getter methods - toString method that returns all the information about a college course Create a GUI application that allows a user to - input data (both Course and Student) - update data (both Course and Student) - view a particular student - view a particular course - view reports such as o list of all students o list of students enrolled in a particular course o list of students of a particular year level o list of all courses o list of courses offered by a particular college Note: Additional reports may be added as the need arises.