Examveda

What will be the output of the following C++ code?
#include <iostream>
using namespace std;
class BaseClass 
{
    int x;
    public:
    void setx(int n) 
    {
        x = n;
    }
    void showx() 
    {
        cout << x ;
    }
};
class DerivedClass : private BaseClass
{
    int y;
    public:
    void setxy(int n, int m)
    {
        setx(n);      
        y = m;
    }
    void showxy() 
    {
        showx();       
        cout << y << '\n';
    }
};
int main()
{
    DerivedClass ob;
    ob.setxy(10, 20);
    ob.showxy();
    return 0;
}

A. 10

B. 20

C. 1020

D. 1120

Answer: Option C


Join The Discussion

Related Questions on C plus plus miscellaneous

What is the difference between '++i' and 'i++' in C++?

A. None of the above

B. They both have the same effect

C. '++i' increments the value of 'i' before returning it, while 'i++' increments the value of 'i' after returning it

D. '++i' increments the value of 'i' after returning it, while 'i++' increments the value of 'i' before returning it