Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

please write in java Project 1 statement This project involves implementing a simple university personnel management program. The program stores relevant information such as university

please write in java
image text in transcribed
image text in transcribed
image text in transcribed
image text in transcribed
Project 1 statement This project involves implementing a simple university personnel management program. The program stores relevant information such as university ID, name, etc. Different information is stored depending on the type of the person (Student Faculty or Staff). For example, a student has a GPA, a faculty has a title and department (professor, mathematics), and a staff has a department where the staff works. For a student, we need a: - full name -id Number of credit hours currently taken For a faculty, we need a: - full name - id - department (mathematics, engineering or english) - Rank (professor or adjunct) -gpa - id For a staff, we need a: - full name - department (mathematics, engineering or english) - status (part time or full time) Students in this university pay $236.45 per credit hour in addition to a $52 administrative fee. Your code should generate a tuition invoice ( a method within the main class). Note that students get a 15% off total payment if their gpa is greater or equal to 3.85. Test your code with one faculty, two students and one staff member. The sample run below should give you a clear idea about how your code should run. The user's entry in marked in bold so you can tell what your code should display to the screen and what the user enters. Please note well that: 1) Your code should run exactly as shown on the sample run below (However, the TA will not deduct points because you skipped two lines instead of three or your tuition invoice has 36 hyphens instead of 63!). 2) When asked to enter the enter the faulty department, mathe Matics and Mathematics are considered to be the same, and your program should display mathematics if faculty information is to be displayed to the screen. However, if the user enters Mathematics department, then this is an invalid entry. There are three departments: Mathematics, Engineering and Sciences. 3) The university ID has no required form so you may choose to enter anything to be the ID. Your project should demonstrate the use of Methods. Consequently, we expect that your code looks like: public class Project) { public static void main(String[] args) { [/Test code goes here } public static someReturned TypeOr Void method 1(Parameters of method1){ // Code of method2 } public static someReturned TypeOr Void method2(Parameters of method2){ 1/Code of method2 ? }//end of program Welcome to my Personal Management Program Choose one of the options: 1- Enter the information of the faculty 2- Enter the information of the two students 3- Print tuition invoice 4-Print faculty information 5- Enter the information of the staff member 6- Print the information of the staff member 7- Exit Program Enter your selection: 2 Enter student 1 info: Name of Student: Julia Alvarez ID: ju1254 Gpa: 3.26 Credit hours: 7 Thanks! Enter student 2 info: Name of Student: Matt Jones ID: ma0258 Gpa: 2.78 Credit hours: 0 Thanks! 1- Enter the information of the faculty 2. Enter the information of the two students 3- Print tuition invoice 4. Print faculty Information 5. Enter the information of the staff member 6- Print the information of the staff member 7. Exit Program Enter your selection: A Invalid entry- please try again 1. Enter the information of the faculty 2. Enter the information of the two students 3. Print tuition invoice 4. Print faculty information 5. Enter the information of the staff member 6. Print the information of the staff member 7. Exit Program Enter your selection: 1 Enter faculty info: Name of the faculty: John Miller ID: 107894 Rank: Instructor "Instructor is invalid Rank: Assistant Professor Assistant Professor is invalid Rank: Professor Department: Engineering Faculty successfully added! 1. Enter the information of the faculty 2. Enter the information of the two students 3. Print tuition invoice 4. Print faculty information 5. Enter the information of the staff member 6. Print the information of the staff member 7. Exit Program Enter your selection: 3 Which student? Enter 1 for Julia Alvarez or Enter 2 Matt Jones 71 Here is the tuition invoice for Julia Alvarez : Julia Alvarez ju1254 Credit Hours:7 ($236.45/credit hour) Fees: 852 ISO Total payment (after discount): $1.707.15 discount applied)

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Students also viewed these Databases questions

Question

What are the different types of networks?

Answered: 1 week ago