Question: 11.4.2: Basic polymorphism. Write the PrintItem() function for the base class. Sample output for below program: Last name: Smith First and last name: Bill Jones

11.4.2: Basic polymorphism.

Write the PrintItem() function for the base class. Sample output for below program:

Last name: Smith First and last name: Bill Jones 

Hint: Use the keyword virtual to make PrintItem() a virtual function.

Fill in where it says your solution goes here

Code:

#include #include #include using namespace std;

class BaseItem { public: void SetLastName(string providedName) { lastName = providedName; };

// FIXME: Define PrintItem() member function

/* Your solution goes here */

protected: string lastName; };

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!