Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1. Write a class named Employee with the following fields: Rose wie ered name idNumber department position at and the bord Habeth Att B This
1. Write a class named Employee with the following fields: Rose wie ered name idNumber department position at and the bord Habeth Att B This organizational chart shows common positions for a tech startup company. https://www.edrawsoft.com/templates/pdf/technology-startup-org-chart.pdf Encapsulation: Enforce data hiding by using private and public accordingly on the members of the class. Accessor/Mutator Methods: Write appropriate mutator methods to store values in the instance fields, and accessor methods that return values of the instance fields. What conditions might you test for in the mutator methods? Constructors: Write 2 constructors. The first constructor accepts a name and idNumber and stores them in the name and idNumber fields. The second constructor accepts a name, idNumber, department, and position and stores them in name, idNumber, department, and position field. 2. Write a tester/demo class that uses the Employee class. Use this table to keep track of information for three employees. We know all the information about the first and second employees, but only the Name and ID Number of the third employee. Refer to the chart above for names of positions. Name (First and Last) ID Number Department Position In the tester class create three Employee objects. Use the correct constructor call for each employee object. Store each row of data in the table above into the correct object. Print the data about each employee in a user friendly manner
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