Visual Basic - Study Mode

[#191] You refer to the member variable by preceding its name with the name of the . . . . . . . . in which it is defined.
Correct Answer

(C) Structure variable

[#192] During runtime radio button can be selected, if a radio button is already selected or not by using the . . . . . . . . property.
Correct Answer

(A) Checked

[#193] What is wrong with the following statement? Dim strCities As String = {"Bombay", "Chennai", "Ladakh", "Tamil Nadu"}
Correct Answer

(D) array name should be strCities()

[#194] The items in a list box belong to a collection called the . . . . . . . .
Correct Answer

(B) Items Collection

[#195] What output will be returned if the following Visual Basic code is executed? strCityState = "Nashville, TN"
blnIsContained = strCityState.Contains("Tn")
Correct Answer

(C) 11
(E) True