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 lambda expression in c#?
How do you type a null character?
What is Named parameter in C#?
What are the properties of string?
What is parallel programming in c#?
Can we declare private class in c#?
What is difference between class and interface in c#?
How can you force derived classes to provide new method implementations for virtual methods?
How do I automate my desktop application?
Explain the difference between boxing and unboxing.
Can derived classes have greater accessibility than their base types?
What are collections in c#?
What is the purpose of a constructor in c#?
How objects are stored in memory?
What is get set in c#?