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 difference between ilist and list in c#?
what are pointer types in c#
What is c# in asp net?
What is unsigned int?
What is the difference between Static, Const and read only?
What is interface c#?
Is c and c# the same?
What are the properties of string?
What is the difference between “out” and “ref” parameters in c#?
What is an expression in c#?
what is boxing and unboxing?can we initialize unboxing directly?
What are scriptable objects?
What the different phase/steps of acquiring a proxy object in webservice?
Does c# have a 'throws' clause?
Differentiate between copy and default constructor.