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 the difference between javap and jad utility
what is difference between String s=new String("vali"); String s="vali"
write a c++ program to find maximum of two numbers using inline functions.
Can a destructor be called directly?
What does <> mean pseudocode?
how to find the correct email address format by using the programe?
Can main method override?
What is conditional Compilation?
What does the code "cout<<(0==0);" print? 1) 0 2) 1 3) Compiler error: Lvalue required
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
What is destructor example?
You have one base class virtual function how will call that function from derived class?