Explain the concept of polymorphism with examples?
Answers were Sorted based on User's Feedback
Answer / dhawal
polymorphisum-polymorphisum means one name many
forms,basically polymorphisum is base class pointer which
can access derive class members
real time example:-
on street signal if red signal turn on all type of vehicals
are stops means on single action multiple tasks are done.
compile time polymorphisum-overloading.
run time polymorphisum-overriding.
| Is This Answer Correct ? | 16 Yes | 0 No |
Answer / venkat
Polymorphism means If one thing exists in different forms v
can it as pOlymorphism
EX:Overloading
Overriding
| Is This Answer Correct ? | 14 Yes | 7 No |
Answer / ravikiran(aptech mumbai)
polymorphism is utilizing the same interface for multiple
purposes
ex:-overloading,overriding
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / nazim virani
Polymorphism is accomplished when different component or
classes behave differently on same interface
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sankar
polymorphism helps us create classes which are simple and
user friendly.it allow the class to behave polymorphicly
when different inputs are passed on to it.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / babul mog
Polymorphism: polymorphism means the same interface for multiple purposes,basically it is base class pointer which can access derive class members.
It has two types:
1. compile time polymorphisum: function overloading,function overriding.
2. runtime polymorphism : virtual function.
| Is This Answer Correct ? | 2 Yes | 1 No |
how to create a jar file in java
How to do validation of the fields in any project ?
Can we declare a class as abstract without having any abstract method?
What are local variables?
What are the advantages of exception handling in java?
what is main difference between architecture,framework and design pattren
wat is class level lock and object level lock
What is difference between wait and notify in java?
I need to know about complete topic in java's collections i with an examples
Is there any difference between nested classes and inner classes?
Explain how to force the garbage collection in java.
What is a double vs float?