Binding refers to the linking of a function call to the code to be executed in response to the call. Dynamic Binding means that the code associated with the given function call is not known until the time of call at runtime. A Function call associated with a polymorphic reference depends on dynamic type of that reference.
1. Binding linking of function call to the code to be executed in response to the call
2. Dynamic Binding code associated with given function call is not known until the time of call at run-time
3. Associated with polymorphism and inheritance
4. Function call associated with polymorphic references depends on dynamic type of that reference.


