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 : 57
To call a buttons click event use

Button1.Click
Button1.PerformClick
Button1.Clicked
None of the above

Question No : 58
To vertically arrange all forms in an MDI form use

Me.Layout(MdiLayout.TileVertical)
Me.MdiLayout(MdiLayout.TileVertical)
Me.LayoutMdi(MdiLayout.TileVertical)
Nothing is required because default is Vertical

Question No : 59
While handling keystrokes if e.Handled=True is set then Visual Basic

Will handle the key
Will not handle the key
Will send the key to Garbage collector
None of the above

Question No : 60
Dim S as Integer=10
Text1=S
Msgbox(Text1.Text)

Will return error
Will return 10
Will return 0
Will return Null

Question No : 61
PasswordChar property of a TextBox can accept " " (space) as the password char

True
False

Question No : 62
If Scrollbars property of a TextBox is set to Hortizontal and the WordWrap property is also set to true. Which one will get precedence

Scrollbars
WordWrap
No precedence both will work

Question No : 63
A single LinkLabel can support multiple links

True
False