14.
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?

If intSales(intSub) >= 0 AndAlso intSales(intSub) < 4 Then


If intSales(intSub) >= 0 AndAlso intSales(intSub) <= 4 Then


If intSub >= 0 AndAlso intSub < 4 Then


If intSub >= 0 AndAlso intSub <= 4 Then

16.
A nested selection structure can be contained in . . . . . . . . of another selected structure.

18.
The position of an item in a list box depends on which of the following property of the value stored in the list box's?

20.
Which of the following statements is false?

Read More Section(Visual Basic)

Each Section contains maximum 100 MCQs question on Visual Basic. To get more questions visit other sections.