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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!