Free C++ Institute CPA Exam Actual Questions

The questions for CPA were last updated On Apr 2, 2025

At ValidExamDumps, we consistently monitor updates to the C++ Institute CPA exam questions by C++ Institute. Whenever our team identifies changes in the exam questions,exam objectives, exam focus areas or in exam requirements, We immediately update our exam questions for both PDF and online practice exams. This commitment ensures our customers always have access to the most current and accurate questions. By preparing with these actual questions, our customers can successfully pass the C++ Institute CPA - C++ Certified Associate Programmer exam on their first attempt without needing additional materials or study guides.

Other certification materials providers often include outdated or removed questions by C++ Institute in their C++ Institute CPA exam. These outdated questions lead to customers failing their C++ Institute CPA - C++ Certified Associate Programmer exam. In contrast, we ensure our questions bank includes only precise and up-to-date questions, guaranteeing their presence in your actual exam. Our main priority is your success in the C++ Institute CPA exam, not profiting from selling obsolete exam questions in PDF or Online Practice Test.

 

Question No. 1

What will the variable "y" be in class B?

class A {

int x;

protected:

int y;

public:

int age;

};

class B : protected A {

string name;

public:

void Print() {

cout << name << age;

}

};

Show Answer Hide Answer
Correct Answer: C

Question No. 2

What is not inherited from the base class?

Show Answer Hide Answer
Correct Answer: A, B, C

Question No. 3

What is the output of the program if character 2 is supplied as input?

#include

using namespace std;

int main () {

int c;

cin >> c;

try

{

switch (c)

{

case 1:

throw 20;

case 2:

throw 5.2f;

}

}

catch (int e)

{ cout << "int exception. Exception Nr. " << e; }

catch (float e)

{ cout << "float exception. Exception Nr. " << e; }

catch (...)

{ cout << "An exception occurred."; }

return 0;

}

Show Answer Hide Answer
Correct Answer: D

Question No. 4

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

#include

using namespace std;

#define A 1

int main()

{

#if A

cout<<"Hello";

#endif

cout<<"world";

return 0;

}

Show Answer Hide Answer
Correct Answer: A

Question No. 5

What will be the output of the program?

#include

using namespace std;

int fun(int);

int main()

{

cout << fun(5);

return 0;

}

int fun(int i)

{

return i*i;

}

Show Answer Hide Answer
Correct Answer: A