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 |
i got a backdoor offer in process global,Bangalore..Can i work with it?
how to swap to variables without using thrid variable in java?
What is class and object with example?
Base class has two public data members. How can i derive a new class with one datamember as public and another data member as private?.
What is friend function?
what is the difference between class to class type conversion and copy constructor ?
why constructor cannt be declar virtually? why destructor cannt be overloaded?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
Describe the difference between a Thread and a Process?
Whats is abstraction in oops?
Why is it so that we can have virtual constructors but we cannot have virtual destructors?