Vidyalelo
Visual Basic · Q114

Visual Basic MCQs: Test Your Proficiency in Visual Basic Programming

Programming · Visual Basic · question 114

Q114

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

A.
0
Answer
B.
1
C.
3
D.
4

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board