1. Design and implement a Java class for courses offered at a university. The courses have the following fields: Name Description Credits CourseDays 2. Design and implement a Java class for students of a university. The students have the following fields: FirstName LastName StudentID Address EntranceYear ListOfCourses 3. Design and implement a Java class for instructors of a university. The instructors have the following fields: FirstName LastName FacultyID Address EmploymentDate ListOfCourses 4. Within the main method, create the following objects: - Create three courses for “Computer Science”, “Statistics”, and “English Literature”. Add proper descriptions, credits, and course days. - Create two teachers; one offering both the “Computer Science”, and “Statistic” courses and another who offers the “English Literature” course. - Create ten students who signed up for the courses randomly
1. Design and implement a Java class for courses offered at a university. The courses have
the following fields:
Name
Description
Credits
CourseDays
2. Design and implement a Java class for students of a university. The students have the
following fields:
FirstName
LastName
StudentID
Address
EntranceYear
ListOfCourses
3. Design and implement a Java class for instructors of a university. The instructors have
the following fields:
FirstName
LastName
FacultyID
Address
EmploymentDate
ListOfCourses
4. Within the main method, create the following objects:
- Create three courses for “Computer Science”, “Statistics”, and “English Literature”. Add
proper descriptions, credits, and course days.
- Create two teachers; one offering both the “Computer Science”, and “Statistic” courses
and another who offers the “English Literature” course.
- Create ten students who signed up for the courses randomly
Trending now
This is a popular solution!
Step by step
Solved in 2 steps