Visual Basic - Study Mode
[#91] In . . . . . . . . , The size of the array can be changed at the run timesize changes during the program execution.
Correct Answer
(C) dynamic array
[#92] Instead of entering the Option statements in the Code Editor window, you also can enter in the . . . . . . . .
Correct Answer
(B) Project Designer Window
[#93] The number of characters contained in a String is stored as Integer in String's . . . . . . . .
Correct Answer
(B) Length property
[#94] Unary and Binary refer to the number of . . . . . . . . needed by the operator.
Correct Answer
(B) Operand
[#95] How many times will the MessageBox.Show method in the following code be processed? For intCount As Integer = 4 To 11 Step 2
MessageBox.Show("Hello")
Next intCount
Correct Answer
(B) 4