difference between the run time polymorphism and compile
time poly morphism and about virtual function.
Answer Posted / sangita pradhan
Compile time polymorphism(Static polymorphism) means
basically those language structure which will cause the
compiler to produce code at the compile-time. That is, the
compiler is well aware that what code is to be generated at
the compile-time itself: Ex: overloading of operators,
functions.
Run time Polymorphism(Dynamic Polymorphism)means that the
compiler is unaware what code is to be generated so it binds
the possible code and let the program decide it at the
run-time itself.Ex: the virtualness of a class member or the
entire class itself.
| Is This Answer Correct ? | 79 Yes | 7 No |
Post New Answer View All Answers
What are the 3 control structures in programming?
How do you do a selection sort?
What is a static structure?
What does abstract data type mean?
Can a hashset contain duplicates?
Which method will arrange the element of an array in alphabetical order?
Differentiate between failfast and failsafe.
How dynamic arrays are created?
What is a singletonlist?
How to reference all the elements in a one-dimension array?
Define hash table?
What is the main advantage of a linked list?
Describe the complexity of Binary search
How many null values are allowed in hashmap?
Does treeset allow null?