?
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
MessageBox.Show("Hello")
intCount += 1
Loop While intCount > 3
intCount =0;
Do
MessageBox.Show("Hello")
intCount += 1
Loop While intCount > 3
Join the Discussion
Login to post a comment or share your explanation.
Login