Visual Basic - Study Mode

[#166] What will be the output of the following Visual Basic code? Dim intScores As Integer = {78, 83, 75, 90}
Array.Sort(intScores)
Array.Reverse(intScores)
Correct Answer

(D) 90,83,78,75

[#167] Progress bar is always work with . . . . . . . .control.
Correct Answer

(B) timer

[#168] Data in an array can be distinguished using . . . . . . . . number.
Correct Answer

(B) Subscript

[#169] Is there an error in the below code? Private _intSide As Integer
Public Property Side As Integer
_intSide=_intSide+2
End Property
Correct Answer

(D) Compilation Error

[#170] What will be in Msg after the following code is evaluated? If 5*3 OrElse 3^2 Then
Msg="Hi"
Else
Msg="Bye"
EndIf
Correct Answer

(A) Hi