why function overloading is not called as pure polymorphism?
Answer Posted / dl
question is wrong
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is multilevel inheritance?
What is coupling in oop?
What is pointer in oop?
What is overriding in oop?
Why is static class not inherited?
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
Why do we use encapsulation in oops?
Can we have inheritance without polymorphism?
hi all..i want to know oops concepts clearly can any1 explain??
What is encapsulation and abstraction? How are they implemented in C++?
What are oops methods?
Why we use classes in oop?
What is polymorphism and types?
Can we create object of interface?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?