What is early binding and late binding
Answer Posted / ashish dwivedi
early binding---it happens at compile time. it will only
take care of programing part which is all ready defined by
the major classes that we have included..like
#include<stdio.h>
main()
(
printf("hello"); ///predefined function in STDIO.H it will
come under early binding. because STDIO.h has defined the
working of Printf(); Method of function
void abc(a,b),
it is user defined method or function...there is a no
definition of ABC(a,b) available in STDIO.H or any library
so this will come under late binding- at Run time
| Is This Answer Correct ? | 8 Yes | 10 No |
Post New Answer View All Answers
What is func delegate in c#?
What is the difference between malloc () and new?
what is IDisposal interface,IComparable,IEquatable,IFormatable
What is marshalling in c#?
What is the difference between list and array in c#?
What are the types of attributes in c#?
What is difference between const and static in c#?
Does c# have its own class library?
What is the difference between Static, Const and read only?
What is ildasm.exe used for?
What are assemblies?
What do you mean by serialization in .NET?
Explain streamreader/streamwriter class?
What is typeof c#?
What is as keyword in c#?