If the base class is inherited privately then the public members of the base class become protected members of the derived class and the protected members of the base class become public members of the derived class?Is this statement True or False?

🎲 Try a Random Question  |  Total Questions in Quiz: 87  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
OOPs Practice Test Questions — practice the complete quiz, review flashcards, or try a random question.

Object-Oriented Programming is a programming paradigm based on the concept of "objects", which can contain data and code. The data is in the form of fields, and the code is in the form of procedures. A common feature of objects is that procedures are attached to them and can access and modify the object's data fields.


If the base class is inherited privately then the public members of the base class become protected members of the derived class and the protected members of the base class become public members of the derived class?<br />Is this statement True or False?