Create a Java application which can be used by tutors/students to create/run tests.
Students’ data should be saved in a file named “students.txt”. Each student has the following data: ? student_id (integer) ? name (String) ? surname (String) ? date of birth (Date) ? total points received form tests (integer)
Tutors’ data should be saved in a file named “tutors.txt”. Each tutor has the following data: ? tutor_id (integer) ? name (String) ? surname (String) ? password (String) – The password must contain more than 8 characters and must have at least a character from 0-9
Test questions should be saved in a file named “questions.txt”. Each question is of type Yes/No (it has only two alternatives Yes/No) and has the following data: ? question_id (integer) ? question_text (String) ? question_answer (boolean – true if the correct answer is Yes, false if the correct answer is No) ? question_points (integer)
This application should have the following functionalities: 1. Add a new student in file “students.txt” – this functionality should be available only for tutors 2. Add a new tutor in file “tutors.txt” – this functionality should be available only for tutors 3. Add a new question in file “questions.txt” – this functionality should be available only for tutors 4. Display all the data for a given student found by his/her student_id – this functionality should be available only for tutors
When the application is started, this question should be displayed:
Are you a tutor or a student?
If the user’s answer is “tutor”, than the tutor password is required -> if the password is correct, then the application menu (for tutors) is displayed:
If the user’s answer is “student”, than no password is required. The application menu (for students) is:
DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma
Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t
Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th
1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of
1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of