Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

c++ code i need this part - You have been hired by Q8Fashion Co. to design and implement their IT system. - They told you

image text in transcribedimage text in transcribedc++ code

image text in transcribedimage text in transcribedimage text in transcribed

i need this part

image text in transcribedimage text in transcribed

- You have been hired by Q8Fashion Co. to design and implement their IT system. - They told you that the system should record the information related to their Customers, and Employees. - Every Person in the system should contain the following basic information: Name, Email, and Gender. - For Customers, you should record the Name, Email, Gender, Delivery Address. - For Employees you should record the Name, Email, Gender, and Salary. - For Driver Employees you should record the Name, Email, Gender Salary, Driving License Number, and Number of Deliveries. - For Managers you should record the Name, Email, Gender, Salary, and Annual Bonus Amount. - You should note that there are Driver Managers who are Drivers and Managers at the same time. - Draw an inheritance Hierarchy (/0.5) - Code the Main Classes using the minimum number of Classes (Hint: use inheritance) (/0.75) - Generate Getters and Setters (/0.75) clude iss Person private: string Name; string Email; string Gender; public: virtual void setName(string n){ Name = n; } virtual void setEmail(string n){ Email = n; virtual void setGender(string n){ Gender =n;} string getName()\{ return Name; } string getEmail() \{ return Email; } string getGender()\{ return Gender; } class Driver_Manager : public Manager, public Driver_Employee\{ }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data And Databases

Authors: Jeff Mapua

1st Edition

1978502257, 978-1978502253

More Books

Students also viewed these Databases questions

Question

1. What are the major sources of stress in your life?

Answered: 1 week ago