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 encapsulation with example?
Why it is called runtime polymorphism?
Explain virtual inheritance?
which feature are not hold visual basic of oop?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
What is an interface in oop?
What is oops with example?
What is the real time example of encapsulation?
Can a varargs method be overloaded?
What is multilevel inheritance explain with example?
What are the 4 main oop principles?
What is stream in oop?
What are the benefits of interface?
Who invented oop?
What is overriding vs overloading?