Visual Basic - Study Mode
[#606] What will be in text, if Intid contains 3? Select Case Intid
Case 1
Text="Jannet"
Case 2 to 4
Text="Mark"
Case 5, 7
Text="Jerry"
Case Else
Text="Sue"
End Select
Correct Answer
(B) Mark
[#607] . . . . . . . . is used to check the condition with step by step by in this also we the condition more than one .
Correct Answer
(C) else if ladder
[#608] The intSales array is declared as follows: Dim intSales() As Integer = {10000, 12000, 900, 500, 20000}. Which of the following If clauses determines whether the intSub variable contains a valid subscript for the array?
Correct Answer
(B) If intSales(intSub) >= 0 AndAlso intSales(intSub) <= 4 Then
[#609] A . . . . . . . . computer requests web pages from the server.
Correct Answer
(C) Client
[#610] A nested selection structure can be contained in . . . . . . . . of another selected structure.
Correct Answer
(D) Both in truth and in false part