what is polymorphism?
Answers were Sorted based on User's Feedback
Answer / kokila
One name with many forms. Single name used for many purpose.
Ex. single function name with multiple arguments
operator for dual purpose
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / cathie
mechanism through which a function behaves in many forms in
different invocations
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / krishnakala
polymorphism means exhibiting many forms with same name.it is possible by using interface
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / divyaja
Polymorphism is a greek word.'Poly' means many.'Morphism'
means programs.'Polymorphism' many programs.That means by
calling many forms or many programs using one interface.By
using polymorphism we can achieve overloading and overriding.
| Is This Answer Correct ? | 0 Yes | 0 No |
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Why #include is used?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
What is a constructor in c++ with example?
What does floor mean in c++?
Write about all the implicit member functions of a class?
Difference between shift left and shift right?
wrong statement about c++ a)code removably b)encapsulation of data and code c)program easy maintenance d)program runs faster
Differentiate between an external iterator and an internal iterator?
Specify some guidelines that should be followed while overloading operators?
What is a Default constructor?
what is a class? Explain with an example.