Answer Posted / poorna
polymorphisum means many forms
one object acting on differnt type actions for the our
requiremts
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
how to get the oracle certification? send me the answer
What is abstraction in oops?
What are the 3 pillars of oop?
What is overriding in oops?
How to call a non virtual function in the derived class by using base class pointer
Are polymorphisms mutations?
what are the realtime excercises in C++?
Why is there no multiple inheritance?
What are benefits of oop?
What are the advantages of 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
What does it mean when someone says I oop?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is stream in oop?
Explain virtual inheritance?