Practice Tests / AICPA / CPA
AICPA
CPA Certified Public Accountant (CPA)
Use original educational practice content, randomized simulator sessions, score history and explanation review for CPA.
Practice questions are provided in English to match the language commonly used in IT certification exams.
QZ9 is an independent training platform. All practice questions are original and created for educational purposes only. We do not provide unauthorized vendor exam content. Microsoft, AWS, Cisco, CompTIA, PMI and other trademarks belong to their respective owners.
VendorAICPA
CodeCPA
Duration4 sections in 18 months
Questions220 refs
Exam facts
Objective-based preparation without unauthorized content
Certification metadata is preserved from the legacy QZ9 catalog. Questions remain English-only.
Start Practice Test
1Find your exam
2Start the simulator
3Review results
QZ9Independent training platform
Free question preview
Exam simulator
Practice questions are provided in English to match the language commonly used in IT certification exams.
Question 1
What will the variable "age" be in class B? class A { int x; protected: int y; public: int age; }; class B : protected A { string name; public: void Print() { cout
Question 2
What happens when you attempt to compile and run the following code? #include using namespace std; int main() { const int x=20; const int *ptr; ptr = &x; *ptr = 10; cout
Question 3
What happens when you attempt to compile and run the following code? #include #include using namespace std; float* sum(float a,float b); float* sum(float a,float b) { float *f = new float; *f = a+b; return f; } int main() { float a,b,*f; a = 1.5; b = 3.4; f = sum(a,b); cout
Question 4
What is the output of the program given below? #include using namespace std; int main (int argc, const char * argv[]) { int i=10; { int i=0; cout<
Question 5
What happens when you attempt to compile and run the following code? #include using namespace std; class First { public: void Print(){ cout