Home

Visual Basic .NET MCQ Question with Answer

Visual Basic .NET MCQ with detailed explanation for interview, entrance and competitive exams. Explanation are given for understanding.

Download Visual Basic .NET MCQ Question Answer PDF

Question No : 36
If a Form is Inherited from another Form and both Forms have certain codes in their respective Form_Load event, then while running the program

Only the first Forms code will be executed
Only the second Forms code will be executed
Both Forms code will be executed
None of the above

Question No : 37
Images can be loaded from

Images.FromFile
BitMap.FromFile
System.FromFile
Both a and b

Question No : 38
What cannot be done if the table has no primary key

Insert and Update
Update and Delete
Select and Delete
Insert and Select

Question No : 39
In Class, Me.Show and MyClass.Show are same (Show is method name)

True
False

Question No : 40
A single OLEDBAdapter can have many DataSets

True
False

Question No : 41
DataSet can be used to connect to Crystal Report

True
False

Question No : 42
dim arr(10) as string,
the max index of the array is

9
10
Can be >10 also
None of the above