What do you mean by binding of data and functions?
Answer Posted / zoya
Binding is the process of connecting the function call to the function body. I.E. When we call the function, the parameters and the function name are passed to a internal function of the system. The system then locates the memory chunk where the function is defined(i.e. provides the address).<br><br>There are 2 types of binding:<br>1. Early binding: When the binding happens during the compilation.(Before the run time). Example: Normal functions<br><br>2. Late Binding: Also known as dynamic binding, Run Time binding etc. Here the binding happens during the runtime. <br>Example: Virtual functions.<br><br>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is overriding in oop?
Write a program to sort the number with different sorts in one program ??
What is persistence in oop?
State what is encapsulation and friend function?
Why do we use oops?
Are polymorphisms mutations?
Why interface is used?
What is the importance of oop?
What is the fundamental idea of oop?
When not to use object oriented programming?
Why is there no multiple inheritance?
What is pure oop?
What language is oop?
What are the three parts of a simple empty class?
What is polymorphism explain?