Question
1. Driver Class Implement Class driver as described in the UML diagram above. 2. Order Class Implement Class Order as described in the UML diagram
1. Driver Class Implement Class driver as described in the UML diagram above.
2. Order Class Implement Class Order as described in the UML diagram above. Notice that, driver, customer, date protected and not private in this class.
3. RestaurantOrder class Implement class RestaurantOrder , which inherits from class order . Note the following: 1- Parameterized constructor that receives all data members including data members in the base class. 2- print_details () of the base class should be overridden to print the additional information about the restaurant_name and meal_name .
4. MertOrder class Implement class MertOrder , which inherits from class order . Note the following: 1- Parameterized constructor that receives all data members including data members in the base class. 2- In calculate_total (), you have to sum all the prices of the items and store the result in price. 3- print_details () of the base class should be overridden to print the additional information about the items and items_price. 4- There are three things that must be defined inside the MertOrder class that are not explicitly requested and must exist. What are they? Define two of them within the class.
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