Menu

Write Class Named Employee Following Properties Name Name Property Holds Employee S Name I Q43778319

Write a class named Employee that has the following properties.• Name: The Name property holds the employee’s name. • IdNumber:The IdNumber property holds the employee’s ID number. • Department:The Department property holds the name of the department in whichthe employee works. • Position: The Position property holds theemployee’s job title. The class should have the followingoverloaded constructors: • A constructor that accepts the followingvalues as arguments and assigns them to the appropriate properties:employee’s Name, IdNumber, Departmentand Position. • A constructorthat accepts the following values as arguments and assigns them tothe appropriate properties: employee’s Name and IdNumber. TheDepartmentand Position properties should be assigned an emptystring. • A parameter less constructor that assigns empty string toName, Department and Position properties, and 0 to IdNumber.

Create three employee objects to hold the following information: Name Susan Meyers Mark Jones Joy Rogers id Number 47899 3911

Create three employee objects to hold the following information: Name Susan Meyers Mark Jones Joy Rogers id Number 47899 39119 81774 Department Accouting IT Manufacturing Position Vice President Programmer Engineer Show transcribed image text Create three employee objects to hold the following information: Name Susan Meyers Mark Jones Joy Rogers id Number 47899 39119 81774 Department Accouting IT Manufacturing Position Vice President Programmer Engineer

Expert Answer


Answer to Write a class named Employee that has the following properties. • Name: The Name property holds the employee’s name. �…

OR