What happens when you attempt to compile and run the following code?#include <iostream>using namespace std;class A{public:virtual void Print(){ cout<<"A";}};class B:public A{public:void Print(){ cout<< "B";}};int main(){A *obj;A ob1;obj = &ob1;obj?>Print();B ob2;obj = &ob2;obj?>Print();}
Answer(s): A
What happens when you attempt to compile and run the following code?#include <iostream>#include <sstream>#include <string>using namespace std;int main(void){string s;s = "Test";
Answer(s): D
What happens when you attempt to compile and run the following code?#include <iostream>using namespace std;class A {public:int x;A() { x=0;}};class B : public A {public:B() { x=1;}};class C : private B {public:C() { x=2;}};int main () {C c1;cout << c1.x;return 0;}
What happens when you attempt to compile and run the following code?#include <iostream>#include <string>using namespace std;class A {public:A() { cout << "A no parameters";}A(string s) { cout << "A string parameter";}A(A &a) { cout << "A object A parameter";}};class B : public A {public:B() { cout << "B no parameters";}B(string s) { cout << "B string parameter";}B(int s) { cout << "B int parameter";}};int main () {A a2("Test");B b1(10);B b2(b1);return 0;}
Answer(s): B
Post your Comments and Discuss C++ Institute CPA-21-02 exam with other Community members:
Subash commented on October 21, 2024 I am planning to take this exam. Are these 257 questions enough to clear it? Also, does each section have a passing percentage, or is it based on the overall ? INDIA upvote
Our website is free, but we have to fight against bots and content theft. We're sorry for the inconvenience caused by these security measures. You can access the rest of the CPA-21-02 content, but please register or login to continue.