Visual Basic - Study Mode

[#286] The . . . . . . . . in a two-dimensional array specifies the elements row and column position.
Correct Answer

(B) Subscript

[#287] How many times will the MessageBox.Show method in the following code be processed? intCount =0
Do While intCount > 3
MessageBox.Show("Hello")
intCount = intCount + 1
Loop
Correct Answer

(A) 0

[#288] What will be the output of the following Visual Basic expression? -Financial.Pmt (0.06/12, 5*12, 12000)
Correct Answer

(B) 231.99

[#289] A suggestion for fixing the error appears in the . . . . . . . .
Correct Answer

(A) Error correction window

[#290] Two procedures can have procedure-level variable whose names are same.
Correct Answer

(A) True