Answer Posted / raju
using single name performing difference task is called
polymorphism.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What does enum stand for?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?
What is abstraction in oops?
Templates mean
What is a class and object?
What is object and class in oops?
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 is object in oops?
What are the 3 pillars of oop?
Why do we use polymorphism?
can inline function declare in private part of class?
How to call a non virtual function in the derived class by using base class pointer
Is react oop?
What is coupling in oops?
Is enum a class?