What is an orthogonal base class?
Answers were Sorted based on User's Feedback
Answer / prasant
When two base classes have no overlapping properties or
methods they are said to be orthogonal to each other. A
class can be derived from these two base classes with no
difficulty.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / harendra pal
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.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between multiple inheritance and multilevel inheritance?
Which type does string inherit from?
how does a main() in C++ is different from main() in C?
What causes polymorphism?
When you define a integer it gets stored in which data structure?(Stack or a heap)
How do you use inheritance in unity?
What is memory leak and memory corruption?
Whatis the difference between oop and object based language
what is ns string? what is ns array?
Can enum be null?
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
What is the difference between declaration and definition?