Visual Basic - Study Mode

[#626] Text that cannot be changed by the user is termed as . . . . . . . . text.
Correct Answer

(C) Static

[#627] The main property of . . . . . . . ., is LoadPicture and resize the picture .
Correct Answer

(A) picture

[#628] While entering a numeric literal constant you need not enter a . . . . . . . .
Correct Answer

(B) Special character

[#629] The convention is to use . . . . . . . . case for classname.
Correct Answer

(C) Pascal

[#630] What will the following code display in the lblSum control? Dim intSum As Integer
Dim intY As Integer
Do While intY < 3
For intX As Integer = 1 To 4
intSum = intSum + intX
Next intX
intY = intY + 1
Loop
lblSum.Text = Convert.ToString(intSum)
Correct Answer

(D) 30