Visual Basic - Study Mode

[#86] To traverse two dimensional array you require . . . . . . . . loops.
Correct Answer

(B) Two

[#87] Files that read and write in consecutive order are known as . . . . . . . .
Correct Answer

(C) Sequential access file

[#88] Letter . . . . . . . . is a File's Menu access keys.
Correct Answer

(B) F

[#89] Each access key in the interface should be . . . . . . . .
Correct Answer

(A) Unique

[#90] Is there an error in the below code? Private _dblBonus As Double
Public ReadOnly Property Bonus As Double
Set(ByVal value As Decimal)
_dblBonus = value
End Set
End Property
Correct Answer

(C) Compilation Error