What is late bound function call and early bound function
call? Differentiate.
Answer Posted / 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 |
Post New Answer View All Answers
What is oops concept with example?
How to improve object oriented design skills?
String = "C++ is an object oriented programming language.An imp feature of oops is classes and objects".Write a pgm to count the repeated words from this scenario?
What is encapsulation with example?
write knight tour problem which is present in datastructure
What is inheritance in oop?
What is byval and byref? What are differences between them?
What are oops methods?
What is basic concept of oop?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
what is the drawback of classical methods in oops?
What do you mean by Encapsulation?
How do you answer polymorphism?
Can you explain polymorphism?
i=20;k=0;
for(j=1;k-i;k+=j<10?4:3)
{
cout<