difference between the run time polymorphism and compile
time poly morphism and about virtual function.

Answers were Sorted based on User's Feedback



difference between the run time polymorphism and compile time poly morphism and about virtual funct..

Answer / 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

difference between the run time polymorphism and compile time poly morphism and about virtual funct..

Answer / sitaram

The object can be binded at the time of compiling is known
as compiletime polymorphism

The object can be binded at the time of running is known as
running polymorphism

Is This Answer Correct ?    10 Yes 0 No

Post New Answer

More Data Structures Interview Questions

How to inverting a function in sort and searching?

0 Answers  


“int a[] = new int[3]{1, 2, 3}” – This a legal way of defining the arrays?

0 Answers  


What is meant by balanced binary tree?

0 Answers  


What do you mean by linear probing?

0 Answers  


What is the use of placement new?

0 Answers  






Define splay tree?

0 Answers  


what is hashing

7 Answers   Infosys, Nirma,


What is the best case time complexity of bubble sort?

0 Answers  


How does a selection sort work?

0 Answers  


Is hashmap fail safe?

0 Answers  


Can hashmap have same key?

0 Answers  


What does arraylist remove do?

0 Answers  


Categories