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
How do you achieve polymorphism in c#?
Is c# code is managed or unmanaged code?
What are the benefits of using windows services:
What are the two uses of a ‘using’ statement in c#?
What is scope c#?
How to put assembly in gac?
What is Garbage Collection in .Net?
How Reflection is used and what it's significance ?
Why are strings immutable c#?
Write a program to create a user control with name and surname as data members and login as method and also the code to call it. (Hint use event delegates) Practical Example of Passing an Events to delegates
What are the uses of namespaces?
What are bitwise logical operators?
What is the real use of interface in c#?
Can you prevent a class from being instantiated?
Define encapsulation?