subject
Computers and Technology, 08.02.2021 17:30 kedest

Create a class Employee having private data members firstname as string, lastname as string and SSN(social security number) as string. Write getter and setter function for these data members. Also write
default and parameterized constructor for this class. Write pure virtual function double Earnings(). Write
another virtual function voidPrint() which prints first name, last name and SSN of Employee.
Class SalariedEmployee derived from Employee class. Private Data Member for this class is
weeklySalary as double. The public member functions include a constructor that initializes first name, last name,
SSN (social security number) and weekly salary; a set function to assign a new non negative value to data
member weeklySalary; a get function to return weeklySalary's value to the calling program. Function double
Earnings() overrides pure virtual function of Employee class to provide a concrete implementation that returns
the SalariedEmployee's weeklySalary. Function Print() of class SalariedEmployee overrides
Employee function void Print(). For this, call Employee Print function and getter of weeklySalary in this function.
Class HourlyEmployee is also derived from class Employee . Private Data members for this class are
hours and wage of type double. The public member functions include a constructor that initialize first name, last
name, SSN (social security number), an hourly wage and the number of hours worked; set function that assign
new values to data members wage and hours (hours takes value from 0 to 168 and wage is non-negative),
respectively, get functions to return the values of wage and hours, respectively. Function double
Earnings() overrides pure virtual function of Employee class to provide a concrete implementation that returns
wage x hours if hours less than 40 else return 40 x wage + ( ( hours - 40 ) x wage x 1.5 ); Now Function
void Print() of class HourlyEmployee overrides Employee class function void Print(). For this call Employee
Print function and return wage.
In main()create objects of child classes and Parent and call Earning() and Print() functions along with their name
and SSN. Also elaborate if polymorphism is being implemented here.

in c++ language..
object oriented programming...

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 13:30
Write lines of verse that rhyme to remember the following information: acid rain is a type of air pollution caused by chemicals in the air.
Answers: 1
question
Computers and Technology, 24.06.2019 07:20
Ingrid started speaking about her slide presentation. when she clicked to th"third slide, which had just a picture of an elephant, she forgot what she wassupposed to talk about. what could ingrid do to avoid this situation in thefuture? oa. print handouts for her audience.ob. add presenter's notes to each slide.oc. add a video to each slide.od. save her slide presentation to a flash drive
Answers: 2
question
Computers and Technology, 24.06.2019 10:10
Scanning the road can be thought of as a
Answers: 2
question
Computers and Technology, 24.06.2019 14:00
In simple terms, how would you define a protocol?
Answers: 2
You know the right answer?
Create a class Employee having private data members firstname as string, lastname as string and SSN...
Questions
question
Chemistry, 19.11.2020 01:20
question
Biology, 19.11.2020 01:20
question
Computers and Technology, 19.11.2020 01:20
question
Mathematics, 19.11.2020 01:20
question
Mathematics, 19.11.2020 01:20
Questions on the website: 13722363