Solved

What Is Wrong with the Following Do Loop? Dim Index

Question 38

Multiple Choice

What is wrong with the following Do loop? Dim index As Integer = 1 Do While index <> 9 lstBox.Items.Add("Hello") index += 1 Loop


A) The test variable should not be changed inside a Do loop.
B) The test condition will never be true.
C) This is an infinite loop.
D) Nothing

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions