« All Events
6 PM – Intro To Java
June 10, 2021 @ 6:00 pm - 7:00 pm
- We continued on SchoolApplication project.
- We completed Student menus
- We added the ability to add Student to the list.
- We added the ability to find a student in the list.
- Homework:
- Create a new class Teacher.java and this class will have the following attributes
- String firstName
- String lastName
- int age
- String subjectExpertise
- Create a constructor with all of above attributes.
- Create getters and setters methods.
- Inside SchoolMainApplication
- Create a new List<Teacher> teachers as one of the class attribute.
- In the existing menu, we want to add more items
-
AYCLOGIC School System:
1. Create a student
2. Create a teacher
3. Find student
4. Find teacher
5. List all students
6. List all teachers
7. Quit
Enter your selection:
- Add code that would make these 2 new menu works “Create a teacher”, “Find teacher”