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:
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme