what is polymorphism?
Answers were Sorted based on User's Feedback
Answer / rupinder
polymorphism is a best feature of object oriented
programming, polymorphism mean one name many forms. 'poly'
means one and 'morph' mean many.
| Is This Answer Correct ? | 3 Yes | 0 No |
Polymorphism is not the same as method overloading or method overriding. Polymorphism is only concerned with the application of specific implementations to an interface or a more generic base class. Method overloading refers to methods that have the same name but different signatures inside the same class. Method overriding is where a subclass replaces the implementation of one or more of its parent's methods. Neither method overloading nor method overriding are by themselves implementations of polymorphism
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / vijay pratap
Polymorphism is most feature of the object oriented
programming language.It means One method hendled the many
data types.
like ,one person do the many work.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jo
polymorphism is a programming language feature that allows
values of different data types to be handled using a
uniform interface.
| Is This Answer Correct ? | 6 Yes | 7 No |
What is polymorphism and its types?
different types of castings
can main method be overloaded...??? How..????
Why multiple inheritance is not allowed?
difference between structure and union.
how to create thread in java?
17 Answers IBM, Infosys, Wipro,
Can abstract class have normal methods?
Should you protect the global data in threads? Why or why not?
Example for 4 pillar of oops like, Inheritance,Poly,Abstraction,Encabsulation ?
how to find the correct email address format by using the programe?
write a progra in c++ using class & object to find out wheather a given no. is prim or not.
How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?