Visual Basic - Study Mode
[#146] There are 3 type of modules following are not include in it.
Correct Answer
(D) basic module.
[#147] Variables declared using a structure is known as . . . . . . . .
Correct Answer
(C) Structure variables
[#148] A Radio button can be directly accessed from the keyboard using a . . . . . . . .
Correct Answer
(A) Access key
[#149] The autoSize property of the label control that displays program output is automatically set to true.
Correct Answer
(A) False
[#150] What will be assigned to the dblAvg variable after the code has been executed? Do While intSub < 4
intTotal = intTotal + intNums(intSub)
intSub = intSub + 1
Loop
dblAvg = intTotal / (intSub − 1) Dim intNums() As Integer = {10, 5, 7, 2}. The intTotal, intSub, and dblAvg variables contain the number 0 before the loops are processed.
Correct Answer
(D) 8