Latest May 10, 2022 CPA Brain Dump A Study Guide with Tips & Tricks for passing Exam [Q37-Q57]

0 Comments

Rate this post

Latest May 10, 2022 CPA Brain Dump: A Study Guide with Tips & Tricks for passing Exam

CPA Question Bank: Free PDF Download Recently Updated Questions

Effective C++: 55 Specific Ways to Improve Your Programs and Designs 3rd Edition by Scott Meyers

Thanks to many years of experience, the author of this book has outlined 55 specific rules of the thumb that programmers, as well as candidates wishing to pass the CPA exam with distinction, should be conversant with. Through it, the candidate can write better codes, especially because all the approaches in it are accompanied by workable examples. And the well-described material allows individuals preparing for the exam to comprehend the concepts discussed.

C++ Institute CPA Exam Syllabus Topics:

Topic Details
Topic 1
  • Logic, bitwise and arithmetic operators
  • Object-oriented approach and its vocabulary
Topic 2
  • Floating point types: values, literals, operators
  • Dealing with streams and basic input
  • output operations
Topic 3
  • Defining overloaded operators, user-defined operators, exceptions
  • Dealing with classes and objects, class hierarchy and inheritance
Topic 4
  • Strings: declarations, initializations, assignments
  • Machine and high-level programming languages, compilation process
Topic 5
  • Side effects,?different methods of passing parameters and their purpose
  • Introduction to compiling and software development
Topic 6
  • String as an example of object: introducing methods and properties
  • Obtaining the machine code: compilation process
Topic 7
  • Loops and controlling the loop execution
  • Declaring and invoking functions

 

QUESTION 37
What will happen when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
#define A 1
int main()
{
#if A
cout<<“Hello”;
#endif
cout<<“world”;
return 0;
}

 
 
 
 

QUESTION 38
What is the output of the program?
#include <iostream>
#include <string>
using namespace std;
int main () {
string s1 = “Hello”, s2 = “World”;
s2 = s1 + s2;
cout << s2;
return 0;
}

 
 
 
 

QUESTION 39
What will happen when you attempt to compile and run the following code?
#include <iostream>
#include <string>
using namespace std;
int fun(int);
int main()
{
int *x = new int;
*x=10;
cout << fun(*x);
return 0;
}
int fun(int i)
{
return i*i;
}

 
 
 
 

QUESTION 40
Which of the following structures are correct?
1:
struct s1{ int x; char c;
};
2:
struct s2{ float f; struct s2 *s;
};
3:
struct s3{ float f; in i;
}

 
 
 
 

QUESTION 41
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
class A {
public:
virtual void Print()=0;
};
class B:public A {
public:
virtual void Print() { cout<< “B”; }
};
class C:public A {
public:
virtual void Print() { cout<< “C”; }
};
int main()
{
B ob2;
C ob3;
A *obj;
obj = &ob2;
obj>Print();
obj = &ob3;
obj>Print();
}

 
 
 
 

QUESTION 42
What happens when you attempt to compile and run the following code?
#include <iostream>
#include <string>
using namespace std;
class SampleClass
{
string *s;
public:
SampleClass() { s = new string(“Text”);}
SampleClass(string s) { this->s = new string(s);}
~SampleClass() { delete s;}
void Print(){ cout<<*s;}
};
int main()
{
SampleClass *obj;
obj = new SampleClass(“Test”);
obj->Print();
}

 
 
 
 

QUESTION 43
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int main(){
int i, j;
for(i = 0, j = 1; j < 2, i < 4; i++, j++);
cout << i << ” ” << j;
return 0;
}

 
 
 
 

QUESTION 44
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int compare(int, int);
int main()
{
int x = compare(10, 20);
cout << x;
return 0;
}
int compare(int i, int j)
{
return i<j;
}

 
 
 
 

QUESTION 45
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int fun(int x) {
return 2*x;
}
int main(){
int i;
i = fun(1) || fun(2);
cout << i;
return 0;
}

 
 
 
 

QUESTION 46
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int main()
{
int i = 5;
do {
i??;
cout<<i;
}
while(i >= 0);
return 0;
}

 
 
 
 

QUESTION 47
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int op(int x, int y);
float op(int x, float y);
int main()
{
int i=1, j=2, k;
float f=0.3;
k = op(i, j);
cout<< k << “,” << op(0, f);
return 0;
}
int op(int x, int y)
{
return x+y;
}
float op(int x, float y)
{ return x?y; }

 
 
 
 

QUESTION 48
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int main()
{
int i=2;
switch(i)
{
case 1:
cout<<“Hello”;
case 2:
cout<<“world”;
case 3:
cout<<“End”;
} return 0;
}

 
 
 
 

QUESTION 49
What happens when you attempt to compile and run the following code?
#include <iostream>
#include <string>
using namespace std;
class First
{
string *s;
public:
First() { s = new string(“Text”);}
~First() { delete s;}
void Print(){ cout<<*s;}
};
int main()
{
First FirstObject;
FirstObject.Print(); FirstObject.~First(); }

 
 
 
 

QUESTION 50
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
int main (int argc, const char * argv[])
{
int x,y;
union t
{
char tab[2];
int i;
};
union t u;
u.tab[0] = 1;
u.tab[1] = 2;
u.i = 0;
x = u.tab[0];
y = u.tab[1];
cout << x << “,” << y << “,” << u.i;
return 0;
}

 
 
 
 

QUESTION 51
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
void fun(int);
int main()
{
int a=0;
fun(a);
return 0;
}
void fun(int n) { if(n < 2) { fun(++n); cout << n; } }

 
 
 
 

QUESTION 52
What happens when you attempt to compile and run the following code?
#include <iostream>
#include <string>
using namespace std;
class A {
public:
int x;
};
class B : public A {
public:
B() { x=1;}
B(int x) {this?>x = x;}
};
int main () {
B c1;
B c2(10);
cout << c1.x;
cout << c2.x;
return 0;
}

 
 
 
 

QUESTION 53
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
class Base {
static int age;
public:
Base () {};
~Base () {};
void setAge(int a=20) {age = a;}
void Print() { cout << age;}
};
int Base::age=0;
int main () {
Base a;
a.setAge(10);
a.Print();
a.setAge();
a.Print();
return 0;
}

 
 
 
 

QUESTION 54
What is the output of the program?
#include <iostream>
using namespace std;
#define PRINT(i) cout<<i;
int main()
{
int y=2, z=3;
PRINT(y);
PRINT(z);
return 0;
}

 
 
 
 

QUESTION 55
What happens when you attempt to compile and run the following code?
#include <iostream>
using namespace std;
namespace myNamespace1
{
int x = 5;
int y = 10;
}
namespace myNamespace2
{
float x = 3.14;
float y = 1.5;
}
int main () {
namespace newname = myNamespace1;
using namespace newname;
cout << x << ” “;
cout << y;
return 0;
}

 
 
 
 

QUESTION 56
What happens when you attempt to compile and run the following code?
#include <iostream> #include <string>
using namespace std;
int main()
{
string s1[]= {“How” , “to” };
s1[0].swap(s1[1]);
for (int i=0; i<2; i++) {
cout << s1[i];
}
return( 0 );
}

 
 
 
 

QUESTION 57
If there is one, point out an error in the program
#include <iostream>
using namespace std;
int main()
{
int c = ‘a’;
switch(i)
{
case ‘2’:
cout<<“OK”;
case ‘1’:
cout<<“Error”;
default:
break;
}
return 0;
}

 
 
 
 

New CPA Exam Dumps with High Passing Rate: https://www.vcedumps.com/CPA-examcollection.html


Leave a Reply

Your email address will not be published. Required fields are marked *

Enter the text from the image below