-
All output from Trace& Debug classes is directed to which collection
A) TraceB) DebugC) ListenersD) None
-
Much of the underlying integration of .NET is accomplished with XML
A) TrueB) FalseExplanation: Web services, Configurations, Assembly’s, ADO.NET extensively uses XML
-
In VB.NET we have 2 different File extension for class Module files and for Forms
A) TrueB) FalseExplanation: All the files will have the same extensions as .VB
-
Reference Types are located on
A) StackB) HeapC) Managed Heap
-
VB.Net has only 2 major variable types
A) TrueB) FalseExplanation: The only 2 major types are Value types & Reference types
-
Which of the following is not a value type in VB.NET
A) BooleanB) Int16C) ByteD) StringExplanation: String is a class in VB.NET hence it is a reference type but not value type.
-
What is the operation that you can not do with primitive types
A) Assign a value to primitive type using a literalB) Declare primitive types to be constant using the Const keywordC) Create a new instance of primitive type with New keywordExplanation: Instance creation is possible only with reference types
-
Which of the following type has been introduced in VB.Net compare with VB
A) SingleB) DoubleC) Decimal
-
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
-
Option base statement which was introduced in VB6 is till valid in VB.NET
A) TrueB) FalseExplanation: Option base statement has been removed in VB.NET
-
The methods declared with the following modifiers are not accessible out side the current VB.NET project
A) PublicB) ProtectedC) FriendExplanation: Friend methods are internal to the active project they are not acceble out side the project.
-
Every statement in VB.NET must end with “ ; “
A) TrueB) FalseExplanation: Statements in VB.NET need not to end with semicolon
-
The implementation code in a VB.Net method is enclosed between
A) { }B) ( )C) sub .. EndSub
-
By default Main Method in VB.NET take command line arguments
A) TrueB) False
-
Every Class definition in VB.NET must end with
A) End SubB) End ClassC) EndExplanation: End class is the keyword to end the class definition
-
When you a create a console application in VB.NET which of the following files are added by default to the project
A) Assembly info file and a Class fileB) Assembly info file and a Module fileC) Class file and a Module file
-
Every class should have the one of the following method so that an object can be constructed
A) Sub New( )B) Sub Main ( )C) Sub Create( )Explanation: Sub New( ) is the constructor in VB.Net with which object are instantiated
-
How do we implement Late Binding in VB.NET
A) Through the use of “Object” data typeB) Through InheritanceC) Through abstractionExplanation: As object data type can store virtually any value type can be determined during run time.
-
How do you create a Read only Property in VB.NET
A) Using Only Get..EndGet with in property definitionB) Using Only Set..EndSet with in property definitionC) Using both Get & Set
-
Which keyword is used in the method declaration to handle an Event
A) EventB) HandlesC) Raise
VB.NET Interview Questions
Ans