Question
Make a university portal in java just for students studying computer science and computer engineering. It maintains data on system users as well as the
Make a university portal in java just for students studying computer science and computer engineering. It maintains data on system users as well as the various classes offered in these two majors. Teachers and students can both use this portal. Either computer science or computer engineering will be the student's major. To graduate, computer science students must complete 8 credits in math and 6 credits in programming. To graduate, computer engineering students must complete 6 credits in math and 8 credits in programming.
The information should be available for the users:
Students: name, student ID, major, list of courses they have taken, whether they are eligible to graduate or not
Professors: name, employee ID, and list of courses they teach
You will make a list of the courses that are offered to students in the demonstration file. There should be 10 courses on this list, 5 in math and 5 in programming. The following actions should occur once the program has been launched: To make use of the site easier, the person in charge of your program should be able to register one student and one professor. Here is how it would need to appear:
-Please enter the name of student: +Jake Milner
-Please enter the student ID of student: +987456365
-Please enter the major for student: +CE
-Please enter the list of the courses for student: +Mat1, Cs1
-Please enter the name of the professor: +Kyle Smith
-Please enter the employee ID for the professor: +789856423
-Please enter the list of the courses the professor is teaching: +Mat1
Your program will display the professor and student's details once they have registered.
Like this:
The student's name is Jake Milner with the student ID of 987456365 majoring in CE. Their courses are Cs1 and Mat1. They are not eligible to graduate. The professor's name is Kyle Smith with the employee Id of 789856423. They are teaching Mat1.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
public class Main public static void mainString args Student Jake new StudentJake Milner 987456365 CE new StringCs1 Mat1 Professor Kyle new ProfessorKyle Smith 789856423 new StringMat1 Systemoutprintl...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started