what is multi level inheritance give n example ?
Answer Posted / rani
derivation of a sub class from base class and deriving a sub class from that sub class
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What does and I oop mean in text?
What is meant by oops concept?
What is encapsulation and abstraction? How are they implemented in C++?
What is inheritance in simple words?
What is constructor in oop?
Why is there no multiple inheritance?
What is inheritance and how many types of inheritance?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
What is basic concept of oop?
what's the basic's in dot net
What is solid in oops?
What is the difference between abstraction and polymorphism?
Templates mean
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What are objects in oop?