Visual Basic - Study Mode
[#181] The background color of a Web page is determined by the . . . . . . . . property.
Correct Answer
(C) BgColor
[#182] You use the . . . . . . . . constant to include the Exclamation icon in a message box.
Correct Answer
(C) MessageBoxIcon.Exclamation
[#183] What is wrong with the expression "static dblPi AsDouble"?
Correct Answer
(C) "Static" starts with a "S"
[#184] What will be in Msg after the following code is evaluated? If 5*3>3^2 AndAlso True OrElse False Then
Msg="Hi"
Else
Msg="Bye"
Endif
Correct Answer
(A) Hi
[#185] The . . . . . . . . operator allows you to use pattern matching characters to determine whether one String is equal to another String.
Correct Answer
(A) Like