What is late bound function call and early bound function
call? Differentiate.

Answers were Sorted based on User's Feedback



What is late bound function call and early bound function call? Differentiate...

Answer / svlsr2000

Functions are boud to there address so that they could be
executed. if the address of the functions are known durning
compile time the compiler binds it, this kind of binding is
known as compile time binding or early binding. Where as
when we dont know which function needs to be exucuted
during compile time (as in case of dynamic polymorphism),
compiler uses mechaninsm of virtual table and binds the
function address during runtime. this is known as runtime
binding or late binding.

Is This Answer Correct ?    24 Yes 1 No

What is late bound function call and early bound function call? Differentiate...

Answer / amrut kanthavadiya

if function or any variable known during the compile time
such Binding is known as Early Binding.

if during compile time does not specify which function is
bind. such binding known as Late Binding.

Example
--------
Object is best Example of late binding

we are bind object variable at Dynamically when we use the
object.

Is This Answer Correct ?    8 Yes 1 No

Post New Answer

More OOPS Interview Questions

i am getting an of the type can not convert int to int *. to overcome this problem what we should do?

0 Answers  


if u write a class do u write Assignment operator and copy constructor

1 Answers   Siemens,


Why multiple inheritance is not allowed?

0 Answers  


Precompilation ?

1 Answers   emc2,


Where is pseudocode used?

0 Answers  






any one please tell me the purpose of operator overloading

0 Answers   Amazon,


Which language is pure oop?

0 Answers  


What is the renewal class?

0 Answers   Ebix, IBM,


DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED PROGRAMING.

5 Answers  


What is polymorphism and example?

0 Answers  


what are abstract classes and how they impliment , with example

2 Answers  


Write a macro for swapping integers

5 Answers  


Categories