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 data binding in oops?
Describe what an Interface is and how it?s different from a Class.
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)
What are virtual functions?
write a function that takes an integer array as an input and finds the largest number in the array. You can not sort array or use any API or searching needs?
2 Answers IBMS, Zycus Infotech,
what are the different types of qualifier in java?
Prepare me a program for the animation of train
What is oops?what is its use in software engineering?
Where You Can Use Interface in your Project
what is the use of template classes in c++
What is difference between function overloading and overriding?
What is difference between new and malloc?