Create a program that allows users to register students' attributes (Full name, Year and Section, courseID, and studentID) for 3 slots, and their courses, the input in the course must be courseID(103 for Fundamentals of Database Systems, 001 for Object-Oriented Programming, and 108 for Advance Database Management Systems) and users can view each student registered. It must allow the deletion of slots inserted. The program must have 3 Java files and the file name for each Java file must be StudenteRegister.java, Student.java, and Course.java each file must contain its own class.
Note:
Proper use of class, objects, methods, attributes, and modifiers should be applied.
Sample input and output:
Student Register
Choose options below:
1.) Register Slot 1
2.) Register Slot 2
3.) Register Slot 3
4.) View Slots
5.) Delete Slot
6.) Exit
"Selected option: 2"
(Output should be)
FILL THIS FORM
These are the available courses
COURSE CODE COURSE TITLE
103 Fundamentals of Database Systems 001 Object-Oriented Programming
108 Advance Database Management Systems
(User input sample)
Enter your name: Lebron James
Enter your Year&Section: 20
Enter your courseID: 001
Enter your studentID: 190324
Java program can also show to the user the available slot, delete slot, and exit the entire program