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 |
What are static and dynamic type checking?
Write a recursive program to calculate factorial in c++.
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
What is a type library?
What is the use of vtable?
what is software cycle? What is a mission critical system ? What is the important aspect of a real-time system ? Explain the difference between microkernel and macro kernel. Give an example of microkernel.Why paging is used ? Which is the best page replacement algo and Why ? What is software life cycle ? How much time is spent usually in each phases and why Which one do U want to work if selected in Honeywell ? Which are the different types of testing ? What is a distributed system ? Some questions about CSP. Which languages do U know ? What are the differences between Pascal and C. questions from Compiler construction and Lisp. Which are the different computer architecture? What is the requirement in MIMD ? What is the difference between RISC and CISC processors ? Difference between loosely coupled and tightly coupled systems ? What is an open system?
Why do we need templates?
Why namespace is used in c++?
What do you mean by pure virtual functions in C++? Give an example?
What is a modifier in c++?
What gives the current position of the put pointer?