Question
The features of Employee Management System are mainly related to adding, listing, searching, sorting, modifying and deleting employee related records. All these operations are done
The features of Employee Management System are mainly related to adding, listing, searching, sorting, modifying and deleting employee related records. All these operations are done through Array List. The information contained in the employee records are the full name, ID No, phone number, city, address, sex, salary and email of the employee whose record is entered in the system. Project Operations Write a JAVA program that will maintain an employee record using an Array List. The program should be able to perform the following operations: Add employee details (full name, ID No, phone number, city, address, sex, salary and email) to the employee records, ID numbers in the records have to be unique. (Note: each employee record will store in one node in the Array list and insert new employee to the last) Delete any employee record by a given ID number. Update Salary by providing person full name. Display all details of employee records from an employee system. Search employee salary based on person full name. (Note: use sequential search to find all salary for the given full name) Sort all employee in the employee system ascending based on employee ID. (Note: use sorting algorithm from your study to arrange the entire employee system) Project Outputs The output has to display a menu of choices. Then the user can select which operation want to perform. Also, you can use the method System.exit(0); to exit the program. The menu of choices will be: Add employee details into the employee system. Remove an employee from the employee system. Update a salary by providing person full name. Display the entire employee records. Search employee system based on person full name. Sort the entire employee system. Exit the program.
The features of Employee Management System are mainly related to adding, listing, searching, sorting, modifying and deleting employee related records. All these operations are done through Array List. The information contained in the employee records are the full name, ID No, phone number, city, address, sex, salary and email of the employee whose record is entered in the system. Project Operations Write a JAVA program that will maintain an employee record using an Array List. The program should be able to perform the following operations: 1) Add employee details (full name, ID No, phone number, city, address, sex, salary and email) to the employee records, ID numbers in the records have to be unique. (Note: each employee record will store in one node in the Array list and insert new employee to the last) 2) Delete any employee record by a given ID number. 3) Update Salary by providing person full name. 4) Display all details of employee records from an employee system. 5) Search employee salary based on person full name. (Note: use sequential search to find all salary for the given full name) 6) Sort all employee in the employee system ascending based on employee ID. (Note: use sorting algorithm from your study to arrange the entire employee system) Project Outputs The output has to display a menu of choices. Then the user can select which operation want to perform. Also, you can use the method System.exit(0); to exit the program. The menu of choices will be: 1) Add employee details into the employee system. 2) Remove an employee from the employee system. 3) Update a salary by providing person full name. 4) Display the entire employee records. 5) Search employee system based on person full name. 6) Sort the entire employee system. 7) Exit the programStep by Step Solution
There are 3 Steps involved in it
Step: 1
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