-
What is the output of the messagebox function in following codeClass Test Dim A, B, C as Byte, Sub Main() A=200 B=100 C=A+B Console.WriteLine ( C )End subEnd Class
A) Prints 300 as the outputB) Prints “C”C) Compiler ErrorD) RunTime ErrorExplanation: Over flow exception as the sum of 2 bytes is always long
-
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
-
The constructors in VB.Net is similar to which event in previous versions of VB
A) Class_InitializeB) Class_LoadC) Class_Terminate
-
What are the sequence of events of a webForm Life Cycle
A) Form_Initialize, Form_Load, Form_QueryUnload, Form_UnloadB) Form_Load, Form_Initialize, Form_QueryUnload, Form_UnloadC) Form_Initialize, Form_Load, Form_Unload, Form_QueryUnloadD) Form_Load, Form_Initialize, Form_Unload, Form_QueryUnload
-
What is the significance of Option Explicit statement when it is set to On
A) Specifies that any variable name is declared (with type) before useB) Specifies whether strings should be compared as binaryC) Specifies that variables should be initialized before use
-
By default Main Method in VB.NET take command line arguments
A) TrueB) False
-
-
-
-
How do you determine if a check box is selected or not in Vb.Net
A) Using Value PropertyB) Using CheckState PropertyC) Using Option PropertyExplanation: ChsekState is gives the whether checkbox is selected or not.Value was there in VB6
-
To determine the folder in which your application is placed you can use:
A) My.Computer.CurrentFolderB) My.Application.CurrentFolderC) My.System.CurrentFolder
-
Which of the following statements are not true in Vb.NET
A) Objects are of value TypesB) Constructors do not return anythingC) VB.Net Supports Multilevel inheritance
-
Much of the underlying integration of .NET is accomplished with XML
A) TrueB) FalseExplanation: Web services, Configurations, Assembly’s, ADO.NET extensively uses XML
-
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
-
To implement an interface it is not necessary to implement all the methods and properties defined by the interface.
A) TrueB) FalseExplanation: Any class, which implements an interface, must implement all the members of that interface
-
-
Which is the base class for All built in Controls ?
A) User ControlB) Custom ControlC) ControlD) Activex Control
-
In VB.NET cross language integration is possible through
A) Common type SystemB) Common Translation SystemC) Reflection
-
What is the significance of Option Compare statement when it is set to On
A) Specifies that any variable name is declared (with type) before useB) Specifies whether strings should be compared as binaryC) Specifies that variables should be initialized before use
-
Class type in VB.NET is a value type
A) TrueB) FalseExplanation: Class is a reference type in VB.NET
VB.NET Interview Questions
Ans