C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 27 Topic 3 Discussion

C++ Institute CPA - C++ Certified Associate Programmer CPA-21-02 Question # 27 Topic 3 Discussion

CPA-21-02 Exam Topic 3 Question 27 Discussion:
Question #: 27
Topic #: 3

What happens when you attempt to compile and run the following code?

#include

#include

using namespace std;

class A {

public:

int age;

A () { age=5; };

};

class B : private A {

string name;

public:

B () { name="Bob"; };

void Print() {

cout << name << age;

}

};

int main () {

B b,*ob;

ob = &b;

ob?>age = 10;

ob?>Print();

return 0;

}


A.

It prints: Bob55


B.

It prints: Bob1


C.

It prints: 10


D.

Compilation error


Get Premium CPA-21-02 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.