Question: 4. How many times will the MessageBox.Show method in the following code be processed? Dim intCount As Integer Do While intCount > 4 MessageBox.Show(Hello) intCount
4. How many times will the MessageBox.Show method in the following code be processed?
Dim intCount As Integer Do While intCount > 4 MessageBox.Show("Hello")
intCount += 1 Loop
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
