Question
#include <iostream>
using namespace std;
class student
{
public:
int rno , m1 , m2 ;
protected:
void get()
{
rno = 15, m1 = 10, m2 = 10;
}
};
class sports
{
public:
int sm;
void getsm()
{
sm = 10;
}
};
class statement : public student, public sports
{
int tot, avg;
public:
void display()
{
tot = (m1 + m2 + sm);
avg = tot / 3;
cout << tot;
cout << avg;
}
void setObject()
{
get();
}
};
int main()
{
statement obj;
obj.setObject();
obj.getsm();
obj.display();
}
a.
3010
b.
1010
c.
2100
d.
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. What is the output of this program?
Similar Questions
Discover Related MCQs
Q. What is the default access level to a block of data?
View solution
Q. What is the importance of mutable keyword?
View solution
Q. What is the Run-Time Type Information?
View solution
Q. Which operators are part of RTTI?
View solution
Q. To which type of class, We can apply RTTI?
View solution
Q. What is meant by type_info?
View solution
Q. At which time does the static_cast can be applied?
View solution
Q. Which is referred by pointers to member?
View solution
Q. What should be used to point to a static class member?
View solution
Q. Which operator is used in pointer to member function?
View solution
Q. Which is the best design choice for using pointer to member function?
View solution
Q. What is the operation for .*?
View solution
Q. Which is used to allocate and deallocate storage for objects during the execution?
View solution
Q. Which operators are used in the free store?
View solution
Q. What type of class member is operator new?
View solution
Q. What must be an operand of operator delete?
View solution
Q. How can object be allocated outside the object lifetime?
View solution
Q. Pick out the wrong header file about strings.
View solution
Q. Which is best for coding the standard libary for c++?
View solution
Q. What is meant by vector in the container library contains?
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!