« All Events
6 PM – Intro To Java – Gamas
February 28 @ 6:00 pm - 7:00 pm
Today We Did
- We started School System
- We added Student class
- We added add new student and list all students features.
Homework
- Add Find Student feature
Please select one of the following
1. Add student
2. List all students
3. Find Student
4. Add teacher
5. List all teachers
6. Find teacher
Enter your selection (Enter "exit" to quit): 1
ADD NEW STUDENT
Enter student's name: Gamas
Enter student's age: 48
Enter student's grade: 12
You have added Gamas into our system.
Please select one of the following
1. Add student
2. List all students
3. Find Student
4. Add teacher
5. List all teachers
6. Find teacher
Enter your selection (Enter "exit" to quit): 1
ADD NEW STUDENT
Enter student's name: Julie
Enter student's age: 15
Enter student's grade: 10
You have added Julie into our system.
Please select one of the following
1. Add student
2. List all students
3. Find Student
4. Add teacher
5. List all teachers
6. Find teacher
Enter your selection (Enter "exit" to quit): 2
LIST ALL STUDENTS
Gamas - 48 years old - grade 12
Julie - 15 years old - grade 10
Please select one of the following
1. Add student
2. List all students
3. Find Student
4. Add teacher
5. List all teachers
6. Find teacher
Enter your selection (Enter "exit" to quit): 3
FIND STUDENT
What is the student's name: Riley
Riley is not in our system.
Please select one of the following
1. Add student
2. List all students
3. Find Student
4. Add teacher
5. List all teachers
6. Find teacher
Enter your selection (Enter "exit" to quit): 3
FIND STUDENT
What is the student's name: Gamas
Gamas - 48 years old - grade 12
Please select one of the following
1. Add student
2. List all students
3. Find Student
4. Add teacher
5. List all teachers
6. Find teacher
Enter your selection (Enter "exit" to quit):
- Add teacher’s features
- The teacher should have these attributes: name, age, subjectOfExpertise
- Add new teacher
- List all teachers
- Find teacher.