Answer Posted / vani
base class(super class) is inherited by more than one sub
class(derrived class)is called hiererchical inheritance.
Ex: Base class->1.sub class 1
->2.sub class 2
->3.sub class 3
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
What are the three main types of variables?
Write a program to reverse a string using recursive function?
why reinterpret cast is considered dangerous?
What are objects in oop?
What is a function in oop?
Why is encapsulation used?
how to get the oracle certification? send me the answer
What is abstract class in oops?
What are constructors in oop?
How does polymorphism work?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
Why do we use polymorphism?
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
Who invented oop?