C++ Programming Question:
Download Questions PDF

What is an orthogonal base class in C++?

Answer:

If two base classes have no overlapping methods or data they are said to be independent of, or orthogonal to each other. Orthogonal in the sense means that two classes operate in different dimensions and do not interfere with each other in any way. The same derived class may inherit such classes with no difficulty.

Download C++ Programming Interview Questions And Answers PDF

Previous QuestionNext Question
What is a node class in c++?What is a container class? What are the types of container classes in C++?