What you mean by early binding and late binding? How it is related to dynamic binding?
Answer Posted / 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 View All Answers
Is it possible to get the source code back from binary file?
How can you quickly find the number of elements stored in a dynamic array?
What is #include iostream h in c++?
How java is different from c and c++?
What are its advantages and disadvantages of multiple inheritances (virtual inheritance)?
Explain the difference between new() and malloc() in c++?
What is function overloading c++?
Which should be more useful: the protected and public virtuals?
What are protected members in c++?
What is switch case in c++ syntax?
Which c++ operator cannot overload?
What are built-in functions? What is the syntax for the definition?
How do you traverse a btree in backward in-order?
Is c++ a low level language?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?