Question: 31. How many times will the following code segment display the message box? i = 0 Do While i < 10 MessageBox.Show (Hi) Loop 32.
31. How many times will the following code segment display the message box?
i = 0
Do While i< 10
MessageBox.Show (Hi)
Loop
32. How many times will the following code segment display the message box?
i = 0 Do While i< 12
MessageBox.Show (Hi)
i += 3
Loop
33. How many times will the following code segment display the message box?
i = 0 Do While i<= 12
MessageBox.Show (Hi)
i += 3
Loop
34. How many times will the following code segment display the message box?
i = 100
Do While i< 10
MessageBox.Show (Hi)
i =+ 50
Loop
35. How many times will the following code segment will be executed?
i = 0
Do Until i = 10
i += 4
Loop
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
