adplus-dvertising
frame-decoration

Question

What is the output of this program?
    #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.

None of the mentioned

Answer: (c).1020

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this program?