C++ Programming
CLASS HIERARCHIES AND ABSTRACT CLASSES MCQs
Total Questions : 10
The derived class inherit everything from the base class except the given things.
None.
There can be multiple constructors of the same class, provided they have different signatures.
There are three types of constructor in C++. They are Default constructor, Parameterized
constructor, Copy constructor.
None.
What is the output of this program?
1.
#include
2.
using namespace std;
3.
class poly
4.
{
5.
protected:
6.
int width, height;
7.
public:
8.
void set_values(int a, int b)
9.
{
10.
width = a; height = b;
11.
}
12.
};
13.
class Coutput
14.
{
15.
public:
16.
void output(int i);
17.
};
18.
void Coutput::output(int i)
19.
{
20.
cout
In this program, We are calculating the area of rectangle and
triangle by using multilevel inheritance.
$ g++ class1.cpp
$ a.out
1210
There are five types of inheritance in c++. They are single, Multiple, Hierarchical, Multilevel, Hybrid.
What is the output of this program?
1.
#include
2.
using namespace std;
3.
class stu
4.
{
5.
protected:
6.
int rno;
7.
public:
8.
void get_no(int a)
9.
{
10.
rno = a;
11.
}
12.
void put_no(void)
13.
{
14.
}
15.
};
16.
class test:public stu
17.
{
18.
protected:
19.
float part1,part2;
20.
public:
21.
void get_mark(float x, float y)
22.
{
23.
part1 = x;
24.
part2 = y;
25.
}
26.
void put_marks()
27.
{
28.
}
29.
};
30.
class sports
31.
{
32.
protected:
33.
float score;
34.
public:
35.
void getscore(float s)
36.
{
37.
score = s;
38.
}
39.
void putscore(void)
40.
{
41.
}
42.
};
43.
class result: public test, public sports
44.
{
45.
float total;
46.
public:
47.
void display(void);
48.
};
49.
void result::display(void)
50.
{
51.
total = part1 + part2 + score;
52.
put_no();
53.
put_marks();
54.
putscore();
55.
cout
In this program, We are passing the values by using different
methods and totaling the marks to get the result.
Output:
$ g++ class.cpp
$ a.out
Total Score=66.5
There are two kinds of classes in c++. They are absolute class and concrete class.
Polymirphism is literally means class having many forms.
Recent Questions
Q. The Most Important Consideration In Power Amplifier Is _____....
Q. Choose The Odd One Out.
Q. AirAsia Group Of Which Country Has Changed The Name Of Its L....
Q. Direction Of Twist 'Z' Is
Q. .................. Is Your Problem?
Q. Nyquist Plot Provides Information About Absolute Stability A....
Q. International Women's Day Is Being Celebrated On Which Date?....
Q. A) D
Q. Two Students Measure A Particular Length Using The Same Inst....
Q. Light Or Heat Is Required For Which Step In The Halogenatio....
Q. In India, The Temperate Forest Research Centre Is In Which C....
Q. Electrophoresis Of Histones And Myoglobin Under Non-denaturi....
Q. The Units Of Polarization Of Dielectric Are
Q. Choose The Alternative Which Is Closely Resembles The Water-....
Q. The Impulse Turbine Rotor Efficiency Will Have A Maximum Val....
Q. How Much A Month Are You Paid ?
Q. Who Has Been Awarded The Top EU Human Rights Prize- The Sakh....
Q. Identify The Programmable Interval Timer From The Following
Q. In Nature, Magnesium Oxide (MgO) Is
Q. A Person Bought Two Articles A And B For Rs.5,000. He Sold A....