-
Shared method can be invoked directly from the class itself
A) TrueB) False
-
How do you call non shared methods of a class
A) Directly invoking the method nameB) Invoking the method through the instance of that classC) None of the aboveExplanation: Only shared methods can be directly invoked, for non shared method class instance is very much required
-
Events can not be declared as shared in VB.NET
A) TrueB) FalseExplanation: Events can also be shared by declaring with Shared Keyword
-
The underlying mechanism used by the .NET environment for call back methods
A) PointersB) DelegatesC) None of the above
-
Every class we create in VB.NET can act as a base class
A) TrueB) FalseExplanation: Classes created with NotInheritable keyword can not be a base class. It is not possible to derive the classes from notinheritable classes
-
How do you create a subclass
A) With the help of Inherits keywordB) With the help of Using KeywordC) With the help of Implements Keyword
-
-
Which technique we use to achieve polymorphic behavior of an object
A) Late BindingB) Multiple InterfacesC) .NET ReflectionD) All of the aboveExplanation: All of these can be used to achieve polymorphic behavior of an object
-
-
How do you comment source coed in VB.NET
A) REMB) /* */C) //D) ‘Explanation: Both REM & apostrophe is used to comment code in VB.NET
-
Which of the following syntax is not allowed in VB.NET?
A) Sub End subB) { }C) ( )Explanation: Sub … EndSub is for enclosing method implementation & ( ) for enclosing the condition. But Flower brackets are not valid Syntax in Vb.Net
-
-
Which is the base class for TypedDataset
A) DataReaderB) DatasetC) DataAdapter
-
The DataAdapter uses which of the following object to retrieve the data from database
A) ConnectionB) CommandC) DataReaderExplanation: Dataadapter uses connection object to connect to the database where as it uses Command object to retrieve the data
-
Forms in VB.Net are saved in which of the following files
A) .frmB) .vbC) .frxExplanation: .frm &.frx are the file extensions of VB6
-
-
Which of the method is used to display the form as modal
A) Activate ( )B) Show( )C) Showdialog( )
-
How do you create a Custom Control in Vb.Net
A) Inherit from another controlB) Build a composite controlC) Write a control from scratchD) All of the above
-
The tool provided with .Net framework to register assemblies for use by COM is
A) RegasmB) Regsvr32C) ILDASM
-
TlbExp does the same thing which RegAsm does
A) TrueB) FalseExplanation: TlbExp exports the Type Library information
VB.NET Interview Questions
Ans