Visual Basic - Study Mode

[#551] Which of the following is called the line continuation character?
Correct Answer

(D) _

[#552] Declaring a variable tell the computer to allocate a memory space that can be accessed by the variable name. The size of the memory space depends on?
Correct Answer

(B) Data type of the variable

[#553] A . . . . . . . . is defined as a zero or more characters enclosed in quotation marks.
Correct Answer

(A) String

[#554] 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

[#555] In . . . . . . . . first we execute the true statement . then we check the condition if the condition is true then it again execute the true statement .
Correct Answer

(B) do while