Visual Basic - Study Mode
[#106] In the following Visual Basic code, what will be in msg, if str contains "ik"? Dim str as String
Dim msg as String
If str.toUpper="IK"
msg="Hi"
Else
msg="Bye"
EndIf
Correct Answer
(A) Hi
[#107] . . . . . . . . format. In this format, the windows associated with the project will stay within a single container known as the parent. Code and form-based windows will stay within the main container form.
Correct Answer
(A) mdi
[#108] What will be the output of the following Visual Basic expression? Financial.Pmt (0.05, 3, 9000)
Correct Answer
(D) -3304.88
(E) -3304.88
[#109] What will be the value of num after the following Visual Basic code is executed? strName="Veronica Yardley"
num=strName.Length
Correct Answer
(B) 16
[#110] Checkbox in an interface is labeled using . . . . . . . . property.
Correct Answer
(A) Text