Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C++ Design a class called Cook . The class should keep the following information in: Name (a string) Hire date (a string MM-DD-YYYY) Next, write

C++

Design a class called Cook. The class should keep the following information in:

Name (a string)

Hire date (a string MM-DD-YYYY)

Next, write a class called FastFoodCook that is derived from the Cook class. The FastFoodCook class should have a member variable to hold the following information:

Shift (an int)

The workday is divided into two shifts: day and night. The shift variable will hold an integer value representing the shift that the employee works. The day shift is shift 1, and the night shift is shift 2.

Demonstrate the classes by writing a program that uses a FastFoodCook object. The code should prompt the user for the number of workers to be entered. Next, the program should prompt the user to enter the info for each FastFoodCook object (Hire date and shift) and store them in a container.

Finally, the program should iterate your container and display the name of all cooks, that work the day shift, and were hired before year 2019.

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_2

Step: 3

blur-text-image_3

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

Modern Database Management

Authors: Jeff Hoffer, Ramesh Venkataraman, Heikki Topi

12th edition

133544613, 978-0133544619

More Books

Students also viewed these Databases questions

Question

Complexity of linear search is O ( n ) . Your answer: True False

Answered: 1 week ago