Vidyalelo
Java Programming · Q39

Flow Control

Programming · Java Programming · question 39

Q39

How many times will the following code print "Welcome to Examveda"? int count = 0; do System.out.println("Welcome to Examveda"); count++; while (count < 10);

A.
8
B.
9
C.
10
Answer
D.
11
E.
0

Answer: Option C

Solution

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