?
How many times will the MessageBox.Show method in the following code be processed?
How many times will the MessageBox.Show method in the following code be processed?
intCount =0
Do While intCount > 3
MessageBox.Show("Hello")
intCount = intCount + 1
Loop
intCount =0
Do While intCount > 3
MessageBox.Show("Hello")
intCount = intCount + 1
Loop
Join the Discussion
Login to post a comment or share your explanation.
Login