CPA-21-02 Web TestEngine demo

Exit VCEDump CPA-21-02 CPA - C++ Certified Associate Programmer
Question 14 of 39
0% complete
Q14 Single choice

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

#include <iostream>
#include <string>
using namespace std;
class A {
protected:
int y;
public:
int x,z;
A() : x(2), y(2), z(1) { z = x + y; }
A(int a, int b) : x(a), y(b) { z = x + y;}
void Print() { cout << z; }
};
class B : public A {
public:
int y;
B() : A() {}
B(int a, int b) : A(a,b) {}
void Print() { cout << z; }

};
int main () {
A b;
b.Print();
return 0;
}

Sign in to mark questions

Sign in to save marked questions and return to this demo.

Sign in