Question
#include<iostream.h>
class BitsBase
{
int x, y;
public:
BitsBase(int xx = 10, int yy = 10)
{
x = xx;
y = yy;
}
void Show()
{
cout<< x * y << endl;
}
};
class BitsDerived
{
private:
BitsBase objBase;
public:
BitsDerived(int xx, int yy) : objBase(xx, yy)
{
objBase.Show();
}
};
int main()
{
BitsDerived objDev(10, 20);
return 0;
}
a.
The program will print the output 100.
b.
The program will print the output 200.
c.
The program will print the output Garbage-value.
d.
The program will report compile time error.
Posted under Object Oriented Programming Using C++
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which of the following statement is correct about the program given below?
Similar Questions
Discover Related MCQs
Q. When an object goes out of scope, which function is called automatically?
View solution
Q. Destructors do not receive parameters and do not
View solution
Q. Scope resolution operator is denoted by
View solution
Q. A class data members and member functions belongs to
View solution
Q. Passing arguments to a destructor, or specifying return type to destructor, causes
View solution
Q. A destructor for a class is denoted by
View solution
Q. Access functions that is used to test the truth or falsity of conditions, is called
View solution
Q. If no constructor is defined for a class, the compiler
View solution
Q. A constructor that can be invoked with no arguments, is called as
View solution
Q. If a class wants to allow clients to read private data, the class can provide a
View solution
Q. Member selection operator is denoted by
View solution
Q. Which operator is combined with a pointer to an object to access that object's member?
View solution
Q. Non-member functions are defined as
View solution
Q. Member functions defined in a class definition are automatically
View solution
Q. Constructors do not have
View solution
Q. Which preprocessor directives are used to prevent header files from being included more than once in a program?
View solution
Q. The assignment operator can be used to assign an object to another object of the same type, this assignment by default performed by
View solution
Q. Which operator accesses a structure member via the object's variable name?
View solution
Q. Which keyword is used for structure definition?
View solution
Q. Aggregate data types built using data of other types, is called as
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Object Oriented Programming Using C++? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!