-
To find out the role of the logged in user, you�ll use:
A) User.IsInRole(�Administrators�)B) User.Role(�Administrators�)C) UserRole(�Administrators�)
-
What is the corresponding datatype in VB.Net for variant in VB
A) ArrayB) ObjectC) ListD) String
-
In VB.NET which of the following restrictions does not exist?
A) No of variables used in modulesB) Module sizeC) NamingD) All of the above
-
In VB.NET Optional parameters must be
A) First parameter in method signatureB) Second parameter in method signatureC) Last parameter in method signatureD) None
-
Select the keyword used to declare an event signature
A) SignatureB) EventC) EsigD) Eref
-
Which is the base class for All built in Controls ?
A) User ControlB) Custom ControlC) ControlD) Activex Control
-
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
-
Casting from reference type to value or vice versa is called as
A) Casting of variablesB) Boxing/UnboxingC) Structure & Class conversionD) Stack & Heap Conversion
-
What is the difference between class module and code module
A) Code modules are instantiated at runtime and class modules are instantiated at the time of designB) Class modules are instantiated at runtime to create objects and code modules do not have instancesC) None
-
Only few of the .NET framework�s classes are available to VB.NET
A) TrueB) FalseExplanation: All of the .NET framework classes are available to VB.Net
-
In VB.NET cross language integration is possible through
A) Common type SystemB) Common Translation SystemC) Reflection
-
It is not possible to derive a class in VB.Net from a class written in C#
A) TrueB) FalseExplanation: It is possible to derive a class in vb.net from a class written in C# through CTS
-
Which of these tools is used to display the IL contained with in a module
A) ATL Trace toolB) Spy ++C) DisassemblerExplanation: Disassembler is the tool with which one navigate the metadata with in the module
-
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
-
Which of the following are not a member of String Type
A) ConcatB) CopyC) JoinExplanation: Join is not a member of String class
-
It is possible to specify the base of the array Other than 0
A) TrueB) FalseExplanation: In VB.NET Arrays index always begin at 0.
-
Class type in VB.NET is a value type
A) TrueB) FalseExplanation: Class is a reference type in VB.NET
-
The methods which return the values back to the calling code are called as
A) Interrogative methodsB) Imperative methodsC) Constructors
-
VB.NET does not allow Parameterized properties
A) TrueB) FalseExplanation: IT does allow parameterized properties
-
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
VB.NET Interview Questions
Ans