What is polymorphism in oops with example?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

What is virtual function?where and when is it used?

2 Answers   Sitel,


what's the basic's in dot net

0 Answers   informatics,


what is the application of oops?

8 Answers   IBM,


Why is abstraction needed?

0 Answers  


What are the benefits of polymorphism?

0 Answers  






What is an example of genetic polymorphism?

0 Answers  


#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; wow *b; a.x = 22; b = &a; a.x = 23; cout << b->x; return 0; }

1 Answers  


Describe these concepts: Polymorphism, Inheritance and Abstraction.

0 Answers   TCS,


write a short note on Overloading of Binary Operator?

2 Answers  


Can we have inheritance without polymorphism?

0 Answers  


What is encapsulation example?

0 Answers  


What is function overloading?,describe it with the example.

5 Answers  


Categories