Question: (a) Define a C++ base class named Rectangle containing length and width data members. From this class, derive a class named Box with another data
(a) Define a C++ base class named Rectangle containing length and width data members. From this class, derive a class named Box with another data member named depth. The member functions for the base class Rectangle should consist of a constructor and an area() function. The derived class Box should have a constructor, a volume() function and an override function named area() that returns the surface area of the box. (b) Include the classes written in part a, above in a working C++ program that creates an object for each class and calls each member function for each class to test them. Verify the results manually
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
