Skip to main content

JAVA : W2-M4

Module Four


Task Description

The system right now has the schedule, courses, faculty required for the institution. The next stage of SIS is admissions, applicants, student selection. Now you need to create FrontOffice class which will help us do all the admission activities. Here is the story; front office usually admits students after scrutinizing based on marks and eligibility. Here eligibility to admit student is 70%

Deliverables

  1. Create FrontOffice class with attributes and methods.
  2. Create method inside the class with applyOnline(applicationID,appName,yearOfPassing,marksInEntrance)
  3. Call applyOnline multiple times (in a loop) to acquire applicant information and store them inside applicant.txt
  4. Students apply to courses based on pre-requisite and previous marks as passed inside applyOnline method. Year of passing argument would help us identify which batch of student (applicant was).
  5. You could also provide an interface to input applicant details.
  6. Create a new file for qualified students, we could call it students.txt. This file stores information about students who has qualifying mark as applicants (>70 from applicant.txt).
  7. Store studentid,studentName,yearOfStudy,previousMarks and other fields you think which are important.

Resources

  • Java Complete Reference
  • Thinking in Java

Comments