Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Page 1 of 3 Program 2 Employee Management System 1 . 0 Objective: To successfully be able to apply the programming concepts you have learned
Page of
Program
Employee Management System
Objective:
To successfully be able to apply the programming concepts you have learned to create a class and its methods.
Program Description:
You will need to develop a system that can track employee information for two Organizations Acme Inc. and ABC Co
General view of what your system should be able to do:
Add employees to the system, the employee must be working for one of the companies in the system Acme Inc. and ABC Co
Update employees information.
Print employees information.
Print the number of all employees of a specific company.
Print the number of all employees in the system in both companies
System Structure:
Employee Class:
The Employee information you must track is as follows:
ID This is randomly generated.
Name
Gender
Job Title
Organization They work for.
Hire Date
As for the Organization that the Employee works for, you must also track this information:
Organization Name
Number of Employees of each Organization
Note: If an employee is added to a specific company, only the number of employees in that company is incremented by one, not the other.
Caller Class:
The caller class must create instances of the Employee class and be able to comply to the general view of the system above adding employees, and displaying employee information, etc. Page of
Sample Test Run:
~~~~ Welcome to the Employee Management System ~~~~
Please enter employee #s Name: Ricky Bobby
Please enter employee #s Gender: Male
Please enter employee #s Job Title: Software Engineer
Please enter employee #s Organization Acme, Inc., ABC Co:
Please enter employee #s Hire Date Format MMDDYYYY:
Thank you :)
Please enter employee #s Name: Katniss Everdeen
Please enter employee #s Gender: Female
Please enter employee #s Job Title: Android Developer
Please enter employee #s Organization Acme, Inc., ABC Co:
The organization you entered is not in the system, please choose either or :
Please enter employee #s Hire Date Format MMDDYYYY:
Thank you :)
Please enter employee #s Name: Jack Sparrow
Please enter employee #s Gender: Male
Please enter employee #s Job Title: Pirate
Please enter employee #s Organization Acme, Inc., ABC Co:
Please enter employee #s Hire Date Format MMDDYYYY:
Thank you :)
Employee Statistics Report
Total Number of Employees:
Acme, Inc: ABC Co:
:: Employee Listing ::
Employee ID:
Name: Ricky Bobby
Gender: Male
Job Title: Software Engineer
Organization: Acme, Inc.
Hire Date:
Employee ID:
Name: Katniss Everdeen
Gender: Female
Job Title: Android Developer
Organization: Acme, Inc.
Hire Date:
Employee ID:
Name: Jack Sparrow
Gender: Male
Job Title: Private
Organization: ABC Co
Hire Date:
Page of
Your programs and all further programs should have program description header that goes at the top of the file which gives information about the programmer and program.
Name: Susie Q Programmer
Course: CS
Program Name: Hello World
Description: A brief description of the program. What does the program do
not how it does it: for example, it uses loops Does the program get input?
What kind? What information is output from the program and to where screen or file
Step 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