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 |
Write an operator overloading program to write S3+=S2.
What are the main differences between procedure oriented languages and object oriented languages?
9 Answers IBM, Infosys, Wipro,
Why it is called runtime polymorphism?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
Explain the concepts involved in Object Oriented programming.
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
Is react oop?
What is R T T I ?
What is the point of oop?
We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?
1. Define a class.
How is data security provided in Object Oriented languages? ?