-
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
-
Web services can handle any type of data that can be serialized
A) TrueB) False
-
An Assembly must have a Strong name to be placed in GAC
A) TrueB) FalseExplanation: Assembly must have a Unique Strong name to be considerd as a shared assembly
-
Which too l is used to add & remove assemblies from GAC
A) RegasmB) GacUtilC) Regsvr32Explanation: Gacutil /I adds an assembly to GAC & GacUtil /U removes an assembly from Gac
-
How do you refer the current class in VB.Net
A) MeB) ThisC) SuperExplanation: Me is used to refer the current class in VB.Net
-
Where do you define attributes in VB.Net
A) Along with Method signatureB) On top of the method signatureC) With in the Method body
-
-
Describe two ways to set the tab order of controls on your form using vb.net / visual C#?
1. in the designer, select each control capable of receiving the focus.2. in the properties window, set the tabindex property to an appropriate value. the focus passes from control to control in the order of lowest to highest value.
-
What is meant by field-level validation and form level validation.
Field- level keyboard events allow you to immediately validate user input : KeyDown, KeyPress, KeyUp.Form-level validation is the process of validating all fields on a form at once. it is usually called when the user is ready to proceed to another step.
-
VB.NET Interview Questions
Ans