adplus-dvertising
frame-decoration

Question

If a base class is inherited in protected access mode then which among the following is true?

a.

Public and Protected members of base class becomes protected members of derived class

b.

Only protected members become protected members of derived class

c.

Private, Protected and Public all members of base, become private of derived class

d.

Only private members of base, become private of derived class

Answer: (a).Public and Protected members of base class becomes protected members of derived class

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. If a base class is inherited in protected access mode then which among the following is true?

Similar Questions

Discover Related MCQs

Q. Members which are not intended to be inherited are declared as:

Q. While inheriting a class, if no access mode is specified, then which among the following is true? (in C++)

Q. If a derived class object is created, which constructor is called first?

Q. The private members of the base class are visible in derived class but are not accessible directly.

Q. How can you make the private members inheritable?

Q. How many types of inheritance are possible in C++?

Q. Which among the following is true?

Q. Which among the following best describes multiple inheritance?

Q. How many types of inheritance can be used at a time in single program?

Q. Which type of inheritance results in diamond problem?

Q. If 6 classes uses single level inheritance with pair classes (3 pairs), which inheritance will this be called?

Q. Which among the following is false?

Q. If class A has two nested classes B and C. Class D has one nested class E, and have inherited class A. If E inherits B and C, then:

Q. In hierarchical inheritance, all the classes involve some kind of inheritance. (True/ False)

Q. Which type of inheritance cannot involve private inheritance?

Q. How many classes can be inherited by a single class in multiple inheritance (C++)?

Q. How many classes can be inherited by a single class in java?

Q. If multi-level inheritance is used, First class B inherits class A, then C inherits B and so on. Till how many classes can this go on?

Q. Which among the following defines single level inheritance?

Q. If class A and class B are derived from class C and class D, then ________________