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
Why use a singleton instead of static methods?
Perfect Example Of While And Do-While Loop In C#.Net ?
How does yield return work c#?
What does executescalar return in c#?
What's c# ?
What does void mean unity?
Explain the role of the datareader class in ado.net connections?
What is the use of parse in c#?
Explain the features of an abstract class in net.
Can we inherit partial class in c#?
What is the difference between read and readline in c#?
Explain about Error handling and how this is done
What are the fundamental oop concepts?
Why linq is having select clause at the end?
What is thread and explain states of a thread in c#?