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 = intCount + 1 Loop
a. 0
b. 1
c. 4
d. 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
