Answer Posted / naren
Polymorphism means ability to take more than one form.
There are two types of polymorphism
1.Method Overloading(compile time polymorphism)
2.Method Overriding(run-time polymorphism)
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is difference between oop and pop?
What is constructor in oop?
what is different between oops and c++
What makes a language oop?
What are the features of oop?
Where You Can Use Interface in your Project
Which language is not a true object oriented programming language?
What is overloading and its types?
What are objects in oop?
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
When not to use object oriented programming?
How long to learn object oriented programming?
What is interface? When and where is it used?
write a C++ program for booking using constructor and destructor.
What is encapsulation in ict?