Question: 8. (Microsoft Visual Basic) What is wrong with the following Do loop? Dim index As Integer = 1 Do While index 10 lstBox.Items.Add(Hello) index +=
8. (Microsoft Visual Basic)
What is wrong with the following Do loop?
Dim index As Integer = 1 Do While index <> 10 lstBox.Items.Add("Hello") index += 2 Loop
It should have been written as a Do Until It is an infinite The test variable should not be changed within the loop Nothing
(Microsoft Visual Basic)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
