Visual Basic (VB) Question:
Download Questions PDF

What are types of binding?

Answer:

Assigning variable with defined memory space.
Late Binding - Memory size is allotted in later stage.
Ex:- Dim x as object
Early Binding - Memory size is allotted while declaring itself. New Key word is important.
Ex:- Dim x as New Object

Download Visual Basic (VB) Interview Questions And Answers PDF

Previous QuestionNext Question
Different type of Passing Value?What is Dataware Control?