Which code, inserted at line 8, generates the output "0102020"?#include <iostream>using namespace std;class Base {static int age;public:Base () {};~Base () {};//insert code here void Print() { cout << age;}};int Base::age=0;int main () {Base a,*b;b = new Base();
Answer(s): D
What happens when you attempt to compile and run the following code?#include <iostream>using namespace std;class First{public:void Print(){ cout<<"from First";}};class Second{public:void Print(){ cout<< "from Second";}};int main(){First FirstObject;FirstObject.Print();Second SecondObject;SecondObject.Print();}
Answer(s): C
What happens when you attempt to compile and run the following code?#include <iostream>using namespace std;int main(int argc, char *argv[]) {char *s = "ABCDEF";cout << s+2;return 0;}
Answer(s): A
Which of the following can be checked in a switch?case statement?
Answer(s): A,B,C
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.