-
Clone method can create which type of object in VB.NET?
A) Shallow CopyB) Deep CopyC) Either A or BD) None
-
What is the purpose of Invoke Method?
A) Used to call any procedureB) Used to call the procedure through Delegate variableC) BothD) None
-
Dataset is always disconnected
A) TrueB) False
-
What is the lower bound value of array in VB.NET?
A) 0B) -1C) 2D) 3
-
Which of the following statement is wrong in case of Constructors in VB.NET ?
A) Constructors are always named as NewB) Constructors do not return anythingC) Constructors can not be parameterizedD) Constructors are implicitly called when an object is created
-
Which of the following is not a method of a Connection Object in VB.NET?
A) Open ( )B) BeginTransaction ( )C) Execute( )D) Commit Transaction( )
-
What is the output of the following code in Test classClass Myclass Dim Num as Integer Private Sub New (i as integer) Num=i End subEnd class Class Test Sub Main() Dim c as MyclassC=New Myclass (10)End subEnd Class
A) Num variable of Myclass is initialized to 10B) Run Time ErrorC) Compiler ErrorD) StackOverflow ExceptionExplanation: Constructor is declared as Private hence Compile error
-
Whats the output of following codeClass A Public Overridable Sub F() End SubEnd ClassClass B Inherits A Public Overridable Sub F() End SubEnd Class
A) Runtime ErrorB) Compiler ErrorC) Compiler Throws a warning message
-
Which interface provides the fast, connected, forward only access to data source
A) IdataRecordB) IdatabaseC) IdatacursorD) IdataReader
-
Which of the following is incorrect in .NET
A) System.Text.StringbuilderB) System.Collections.CollectionC) System.Data.oledb.oledbcommandD) Microsoft.VisualBasic.Vbmath
-
-
The VB code files will have the extension
A) .vbB) .modC) .config
-
Value types represent simple data storage located on
A) StackB) HeapC) Managed Heap
-
Which of the following Types will have data of fixed size
A) Value TypeB) Reference TypeC) None
-
Which of the following class does not belong to Collection namespace
A) ArrayListB) QueueC) StackD) DictionaryList
-
The concept where the compiler knows the object type before the compile time is
A) Late BindingB) Early BindingC) None of bindingExplanation: As object�s Type is declared before compiling compiler knows everything about the object
-
It is not possible to put multiple classes in side a single .vb file
A) TrueB) FalseExplanation: It is possible to have multiple classes inside a single .vb file.
-
How do you implement interrogative methods in VB.NET
A) Using Sub keywordB) Using Function KeywordC) Using New KeywordExplanation: Functions always return a value hence they are interrogative methods
-
How do you break out of Try Catch block
A) Exit Try keywordB) CloseC) ExitExplanation: Exit try will make the code terminate from try catch block.
-
Which is the best to retrieve Read-Only, Forward-only stream of data from database
A) Data SetB) Typed Data SetC) DataReaderExplanation: Datareader is the disconnected record set which provides a fast way to retrieve the data from the database.
VB.NET Interview Questions
Ans