How many levels of compilation happens in .NET Framework
One
Two
Three
Most of the underlying integration of .NET is done through XML
True
False
An Assemblyinfo file in a VB.NET project will have blank as file extesion.
.config
.vb
.cs
Every type supported by CTS is derived from
System .Object
System .Type
System .Data
Which of the following Types will have data of fixed size
Value Type
Reference Type
None
What is the significance of Option Explicit statement when it is set to On
Specifies that any variable name is declared (with type) before use
Specifies whether strings should be compared as binary
Specifies that variables should be initialized before use
Which of the following class does not belong to Collection namespace
ArrayList
Queue
DictionaryList
Stack
Methods declared with the following modifier are not accessible outside the class
Private
Protected
Friend
Global
The methods which return the values back to the calling code are called as
Constructors
Interrogative methods
Imperative methods
How do you terminate code execute with in a VB.NET method
Exit
Close Sub
Exit Sub
Kill
How do you create a Read only Property in VB.NET
Using Only Get..EndGet with in property definition
Using Only Set..EndSet with in property definition
Using both Get and Set
The constructors in VB.Net is similar to which event in previous versions of VB
Class_Load
Class_Terminate
Class_Initialize
Which interface allows to implement the Dispose method to do cleanup work
Idestructor
Icleanup
Idisposable
How do you call non shared methods of a class
Directly invoking the method name
Invoking the method through the instance of that class
None of the above
How do we implement private interfaces
Using Inherits Keyword
Private interfaces can not be implemented
Using Implements Keyword