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
Will the following code compile and run?
What is the difference between array and list in c#?
What does async mean in c#?
Define sealed classes in c#?
Describe an abstract class?
What is the reason behind the invention of c#?
How does dependency injection work c#?
Why do we need constructors?
What is wpf application in c#?
Can you explain template pattern?
What is semaphore in c#?
What is dynamic object in c#?
What is difference between virtual and override in c#?
What is global namespace in c#?
To catch any possible exception What is the C# syntax written ?