Question: 5. How many times will the MessageBox.Show method in the following code be processed? Dim intCount As Integer Do MessageBox.Show(Hello) intCount += 1 Loop While
5. How many times will the MessageBox.Show method in the following code be processed?
Dim intCount As Integer Do MessageBox.Show("Hello")
intCount += 1 Loop While intCount > 4
a. zero
b. one
c. four
d. five
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
