What you mean by early binding and late binding? How it is related to dynamic binding?



What you mean by early binding and late binding? How it is related to dynamic binding?..

Answer / hrpynux@gmail.com

The compiler performs a process called binding when an object is assigned to an object variable. The early binding (static binding) refers to compile time binding and late binding (dynamic binding) refers to runtime binding.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Do you know what is overriding?

0 Answers  


Which is better c++ or java?

0 Answers  


Why is it difficult to store linked list in an array?

6 Answers   Infosys, Lucent,


How can you link a c program with a c function?

0 Answers  


What is the syntax for a for loop?

0 Answers  






Why cstdlib is used in c++?

0 Answers  


How the delete operator differs from the delete[]operator?

0 Answers  


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


Explain how to initialize a const data member.

0 Answers  


Can we change the basic meaning of an operator in c++?

0 Answers  


When does a 'this' pointer get created?

0 Answers  


What is prototype for that c string function?

0 Answers  


Categories