Visual Basic - Study Mode
[#351] Variables are used to temporarily store data during execution of application.
Correct Answer
(A) TRUE
[#352] What will be assigned to the dblAvg variable after the code has been executed? Do While intSub < 4
intNums(intSub) = intTotal + intTotal
intSub = intSub + 1
Loop
dblAvg = intTotal / intSub 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
(A) 0
[#353] A simple variable, also called as a . . . . . . . . variable, is one that is unrelated to any other variable in memory.
Correct Answer
(D) Scalar
[#354] MDI is used to work as . . . . . . . . , its main property is mdi child , all the forms are open within MDI
Correct Answer
(A) parents
[#355] . . . . . . . . is used to visually group together related items on a menu or submenu.
Correct Answer
(B) Separator bar