Skip to main content

JAVA : W2-M6

Module Six


Task Description

We are able to have the system in place for most of the academic activities. This module helps student enroll into internships and apply for examination. Since we already scheduled every course a student is taking, so students should be able to register for exams for those courses.

Deliverables

  1. Create method inside student class to enroll as teaching assistant.
    1. void enrollTa(courseId) should store studentid,courseid,status inside teachingassistants.txt
  2. Principal mentor should be able to list all the teaching assistants applied for his course.
    1. void approveTa(studentId) should update status as approved.
  3. Student class should have method named applyExam(examId).
  4. We should be able to store students applied for exams (in a file). Ideally exams.txt has studentId,examId,courseId

Resources

  • Java Complete Reference
  • Thinking in Java

Comments