[SOLVED] Implement a base class person

25.00 $

Programming resource
Digital learning resource
Category:
Practical programming resource
Suitable for guided study and reference
Tutor guidance available when needed

Description

Rate this product

Consider the following classes B and D:

Class B

{

Public;

B();

B( int n);

};

 

B::B()

{

cout << âB::B()nâ;

}

 

B::B(int n)

{

cout << âB::B(â << n << â)nâ;

}

 

Class D : Public B

{

public:

D();

D( int n);

private:

B b;

};

 

D::D()

{

cout << âD::D()nâ;

}

 

D::D(int n) : B(n)

{

b = B(-n);

cout << âD::D(â<< n <<â)nâ;

}

 

What does the following program print?

int main()

{

D d(3);

return 0;

}

 

  • Implement a base class person. Derive classes Student and Professor from Person. Every Person has will have a name, and birthdate. Every student will have a major, and every professor will have an income. Write the class definitions, the constructors, and the member functions print() for all classes.

Please provide outcome in C++ program, a text file, and screenshot (JPEG).

Resource details

Understand the Task Before You Use the Resource

Review the requirements, identify the programming concepts involved, study the implementation and test your understanding with your own examples and modifications.