CPA Mock Test Answers 100%

Last Updated on November 24, 2018 by Admin

CPA Mock Test Answers 100%

  1. 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 a = 1, b = 1, c = 1, i = 1;

    i = b < a < c;

    cout << i;

    return 0;

    }

    • It prints: 4
    • It prints: 2
    • Compilation fails
    • It prints: 1
  2. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

     

    int main()

    {

    int val = 0, *adr = &val;

    cout << *val;

     

    return 0;

    }

    • It prints: 1
    • It prints: 0
    • It prints address of val
    • Compilation fails
  3. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    int main(){

    int i = 2;

    if (i‑‑==1)

    cout << i;

    else

    cout << i + 1;

    return 0;

    }

    • It prints: i + 1
    • It prints: 3
    • It prints: 2
    • It prints: 1
  4. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    class One

    {

    public:

    void out(){ cout<<“One”;}

    };

     

    int main()

    {

    One arr[2];

    for(int i = 0; i < 1; i++)

    arr[i].out();

    }

    • It prints: OneOne
    • Compilation error
    • Runtime error
    • It prints: One
  5. Variable “c” in class B, will be…

    class A {

    int a;

    protected:

    int b;

    public:

    int c;

    };

     

     

    class B : public A {

    float f;

    public:

    void foo() {

    cout << f << c;

    }

    };

    • none of these
    • public
    • private
    • protected
  6. What is the output of the program given below?

    #include <iostream>

    using namespace std;

    int main (int argc, const char * argv[])

    {

    double dbl = ‑5.55;

    cout << (int)dbl;

    }

    • -5
    • -0
    • -6
    • -5.5
  7. What is the output of the program given below?

    #include <iostream>

    using namespace std;

    void foo(int &parameter)

    {

    parameter *= 2;

    }

    int main()

    {

    int var = 2;

    foo(var);

    cout << var;

    return 0;

    }

    • 4
    • 8
    • 2
    • 1
  8. What happens when you attempt to compile and run the following code?

     

    #include <iostream>

    using namespace std;

    int main()

    {

    int a = ‑1, *p = &a;

    cout << ((p == NULL) ? 1.1 : 2.2);

    return 0;

    }

    • Compilation error
    • It prints: 1.1
    • It prints: 2.2
    • None of these
  9. Which of the following statements are correct about the following array?

     

    char array[255];

     

    • The array can store 255 elements.
    • The array may be initialized at the time of declaration.
    • The expression “tab[2\]” designates the second element in the array.
    • The expression “tab[255\]” designates the last element in the array.
  10. What happens when you attempt to compile and run the following code?

     

    #include <iostream>

    using namespace std;

    int main(){

    int *Int = new int;

    *Int = 1 / 2 * 2 / 1. * 2. / 4 * 4;

    cout << *Int;

    return 0;

    }

    • It prints: 1
    • It prints: 8
    • It prints: 2.5
    • It prints: 0
  11. Which of the following is user defined data type?

     

    1:

    enum Enum {One, Two, Three};

     

    2:

    int Int=2;

     

    3:

    char Char;

     

    4:

    struct Struct

    {

    char Char;

    int Int;

    };

    • 4
    • 2
    • 1
    • 3
  12. Which code, inserted into the One class, generates the output “123”?

    #include <iostream>

    using namespace std;

    class One {

    public:

    //insert code here

    };

    class Two : public One {

    public:

    void foo(){ cout << 2; }

    };

    class Three : public Two {

    public:

    void foo(){ cout << 3; }

    };

    int main()

    {

    One   o1;

    Two   o2;

    Three o3;

    One   *o = &o1;

    o‑>foo();

    o = &o2; o‑>foo();

    o = &o3; o‑>foo();

    }

    • None of these
    • static void foo(){ cout << 1; }
    • void foo(){ cout << 1; }
    • virtual void foo(){ cout << 1; }
  13. Which code, inserted into the main function, generates the output “a 2”?

    #include <iostream>

    using namespace std;

    namespace Space

    {  char a = ‘a’, b = ‘b’;  }

    int a = 1, b = 2;

    int main () {

     

    // insert code here

    cout << a << ” ” << b;

    return 0;

    }

    • using namespace Space::a;
    • using Space::a;
    • using namespace Space;
    • None of these
  14. What is the output of the program given below?

    #include <iostream>

    using namespace std;

    int main ()

    {

    int i = 0;

    cout << i;

    { int i = 1; cout << i; }

    { int i = 2; }

    cout << i;

    return 0;

    }

    • 010
    • 120
    • None of these
    • 012
  15. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    class foo {

    int p;

    protected:

    int q;

    public:

    int r;

    };

     

     

    class bar : public foo {

    public:

    void assign() {

    p = q = r = 2;

    }

    void out() { cout << q << r; }

    };

    int main () {

    bar b;

    b.assign();

    b.out();

    return 0;

    }

    • Compilation fails
    • 22
    • 02
    • 20
  16. What is the output of this program?

    #include <iostream>

    using namespace std;

    int main()

    {

    char str[] = “Hello\0World\0”;

    cout << str;

    return 0;

    }

    • HelloWorld
    • Hello\0World
    • Hello
    • Compilation fails
  17. Which code, inserted into the main function, generates the output “za”?

    #include <iostream>

    using namespace std;

    namespace SpaceOne {  char a = ‘a’; }

    namespace SpaceTwo {  char a = ‘z’; }

    int main () {

    // insert code here

    return 0;

    }

    • cout << SpaceTwo::a << SpaceOne::a;
    • None of these
    • cout << SpaceOne::a << SpaceTwo::a;
    • cout << a << a;
  18. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    int main()

    {

    char i = ‘1’;

    switch(i)

    {

    case ‘1’:

    cout<<“Hello “;

    case ‘2’:

    cout<<“world “; break;

    case ‘3’:

    cout<<“!”;

    }        return 0;

    }

    • It prints “Hello world !”
    • It prints “Hello world “
    • It prints nothing
    • It prints “Hello “
  19. What happens when you attempt to compile and run the following code?

    #include <cstdlib>

    #include <iostream>

    using namespace std;

    char c;

    char* inc(char par1, int par2)

    {

    c = par1 + par2;

    return &c;

    }

     

     

    int main()

    {

    int a = ‘a’, b = 3;

    char *f;

    f = inc(a,b);

    cout << *f;

    return 0;

    }

    • It prints c
    • It prints d
    • It prints a
    • It prints b
  20. What happens when you attempt to compile and run the following code?

    #include <iostream>

    #include <string>

    #include <exception>

    using namespace std;

    class a

    {

    public: virtual string whose()

    { return “mine”; }

    };

    class b

    {

    public: virtual string whose()

    { return “yours”; }

    };

    int main () {

    a b;

    try  { throw b; }

    catch (a& e)  { cout << e.whose() << endl; }

    return 0;

    }

    • It prints: mineyours
    • It prints: yours
    • It prints: yoursmine
    • It prints: mine
  21. Which code, inserted into the B class, generates the output “ef”?

    #include <iostream>

    #include <string>

    using namespace std;

    class Alpha {

    int p;

    protected:

    int q;

    public:

    int r;

    Alpha():p(2),q(3),r(4) {}

    };

    class Beta : public Alpha {

    string s;

    public:

    int y;

    void assign() {  y = 4; s = “f”;   }

    void out() {

    // insert code here

    }

    };

    int main () {

    Beta b;

    b.assign();

    b.out();

    return 0;

    }

    • cout << char(‘a’ + r) << s;
    • cout << r << s;
    • cout << p << r;
    • cout << ‘a’ + r << s;
  22. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    int sub(int x, int y)

    {

    x ‑= y;

    return x;

    }

    int main()

    {

    int a = 0, b = 1, c, d;

    c = sub(a,b);

    d = sub(c,b);

    cout << c << d;

    return 0;

    }

    • It prints: 12
    • It prints: 1-2
    • It prints: -1-2
    • It prints: -12
  23. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    class one {

    public :

    void foo() { cout << 1; }

    };

    class two {

    public :

    void foo() { cout << 2; }

    };

    int main() {

    two objects[2];

    two *object = objects;

    for(int i = 0; i < 2; i++)

    (object++)‑>foo();

    return 0;

    }

    • It prints: 11
    • It prints: 12
    • It prints: 21
    • It prints: 22
  24. What is the output of this program if the string “bar” is supplied as input?

    #include <iostream>

    #include <string>

    using namespace std;

    int main()

    {

    string s1 = “foo”;

    string s2;

    getline(cin,s2);

    cout << s2.append(s1);

    return( 0 );

    }

    • It prints: bar
    • It prints: foobar
    • It prints: foo
    • It prints: barfoo
  25. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    char fun(char *p)

    {

    char c = *p;

    (*p)++;

    return c;

    }

    int main()

    {

    char array[3]={‘a’, ‘b’, ‘c’};

    fun(array + 1);

    cout << fun(array + 1);

    return 0;

    }

    • Compilation fails
    • It prints: c
    • It prints: b
    • It prints: a
  26. 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 = “abcd”;

    s.append(s);

    s.resize(s.size() / 2);

    cout << s;

    return 0;

    }

    • It prints: abcdabcd
    • It prints an empty string
    • It prints: abcd
    • Compilation fails
  27. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    class C1 {

    friend class C2;

    protected:  int y;

    public:     int z;

    private:    int x;

    public:     C1() { x = y = z = 11; }

    };

     

    class C2 {

    public: C1 a;

    C2 () { a.x = 22; };

    void foo() {

    cout << a.x << a.y << a.z;

    }

    };

    int main()

    {

    C2 c;

    c.foo();

    return 0;

    }

    • It prints: 111122
    • It prints: 221111
    • Compilation fails
    • It prints: 112211
  28. What happens when you attempt to compile and run the following code?

    #include <iostream>

    #include <string>

    using namespace std;

    int f(int a)

    {

    return a + a;

    }

    int main()

    {

    int i = 0;

    for(int a = 0; a < 2; a++)

    i = f(i + 1);

    cout << i;

    return 0;

    }

    • It prints: 3
    • It prints: 2
    • It prints: 6
    • It prints: 9
  29. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    class Zero

    { public: void out(){ cout << 0;} };

    class One : public Zero

    { public: void out(){ cout << 1;} };

    class Two : public Zero

    { public: void out(){ cout << 2;} };

     

    int main()

    {

    Zero *obj;

    One obj1;

    obj = &obj1;

    obj‑>out();

    Two obj2;

    obj = &obj2;

    obj‑>out();

    return 0;

    }

    • It prints: 00
    • It prints: 12
    • It prints: 02
    • It prints: 01
  30. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

     

    class SupClass {

    public:

    void show(int par){ cout << par + 1;}

    };

     

    class SubClass : public SupClass {

    public:

    void show(float par){ cout << par + 2;}

    };

    int main()

    {

    SubClass o;

    o.show(2.0);

    }

    • It prints: 4
    • It prints: 1
    • It prints: 2
    • It prints: 3
  31. Which code, inserted into function main, generates the output “abba”?

    #include <iostream>

    #include <string>

    using namespace std;

    string fun(string s)

    {

    return s.substr(0,1)+s.substr(1,1)+s.substr(1,1)+s.substr(0,1);

    }

    int main()

    {

    string *s = new string(“ab”);

    //insert code here

    return 0;

    }

    • cout << fun(“ab”);
    • cout << fun(*s);
    • cout << fun(s);
    • cout << fun(“abba”);
  32. What is the output of this program?

    #include <iostream>

    #include <string>

     

     

    using namespace std;

     

     

    int main()

    {

    string s1[]= {“A”,”Z”};

    string s=””;

     

    for (int i=0; i<2; i++)

    cout << s.append(s1[i]).insert(1,”_”);

    return( 0 );

    }

    • A_A_Z
    • A__Z
    • A_A
    • A_A__Z
  33. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    int main()

    {

    float x = 0.9, y=‑0.5;

    int i,j = 1;

    i = x + j + y;

    cout << i;

    return 0;

    }

    • It prints: 1
    • Compilation error
    • It prints: 2
    • It prints: 2.4
  34. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

     

    int main(){

    int i = 1;

    if (‑‑i == 1) {

    cout << i;

    } else {

    cout << ‑‑i;

    }

    return 0;

    }

    • It prints: -1
    • It prints: 0
    • It prints: 1
    • It prints: –1
  35. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

    int var = ‑1;

    int static Static(int i)

    {

    static int y = 0;

    y += ++i;

    return y;

    }

    int main()

    {

    var++;

    Static(var++);

    cout << var << Static(var);

    }

    • It prints: 9
    • It prints: 11
    • It prints: 7
    • It prints: 13
  36. What is the output of the program given below?

    #include <iostream>

    using namespace std;

    int main ()

    {

    enum answer { yes, no, whoknows };

    enum answer a[3];

    a[0] = no;

    a[2] = yes;

    a[1] = whoknows;

    for(int i = 0; i < 3; i++)

    cout << a[i];

    return 0;

    }

    • It prints: 102
    • It prints: 120
    • It prints: 201
    • It prints: 210
  37. How can we pass arguments to functions?

    • By invocation
    • By telepathy
    • By default
    • None of these
  38. Which code, inserted into the Class, generates the output “abcd”?

    #include <iostream>

    using namespace std;

    class Class {

    public:

    static char value;

    Class() { value++; };

    ~Class () { value++; };

    //insert code here

    void print() { cout << value;}

    };

     

    char Class::value = ‘a’;

     

    int main () {

    Class a,*b;

    b = new Class();

    b‑>set(‘a’);

    b‑>print();

    delete b;

    a.print();

    a.set(‘c’);

    a.print();

    a.set();

    a.print();

    return 0;

    }

    • void set(char c = ‘d’) { value = c; }
    • void set(char c) { value = c; }
    • void set(char c) { cout << c; }
    • void set() { value = ‘d’; }
  39. What happens when you attempt to compile and run the following code?

    #include <iostream>

    void fun(int *i)

    {

    *i = *i >> *i ‑ 1;

    }

    using namespace std;

    int main()

    {

    int i = 2;

    fun(&i);

    cout << i;

    return 0;

    }

    • It prints: 0
    • It prints: 2
    • It prints: 1
    • It prints: 4
  40. What happens when you attempt to compile and run the following code?

    #include <iostream>

    using namespace std;

     

    #define A    0

    #define B    A+1

    #define C    1‑B

     

    int main() {

    cout << C;

    return 0;

    }

    • It prints: 2
    • It prints: 1
    • It prints: 3
    • It prints: 0