Answer Posted / swetcha
It is a feature that allows one interface to be used for
general class of actions. The specific action is determined
by the exact nature of the situation. In general
polymorphism means "one interface, multiple methods", This
means that it is possible to design a generic interface to
a group of related activities. This helps reduce complexity
by allowing the same interface to be used to specify a
general class of action. It is the compiler's job to select
the specific action (that is, method) as it applies to each
situation
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
any one please tell me the purpose of operator overloading
Which language is not a true object oriented programming language?
What are different oops concepts?
What is destructor example?
What is basic concept of oop?
What is abstract class in oops?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What is multilevel inheritance?
what is the sylabus for priliminaries?
What is cohesion in oop?
What are the benefits of oop?
What is object-oriented programming? Webopedia definition
What is new keyword in oops?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
Why is polymorphism needed?