Examveda
Examveda

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

D. 11

E. 0

Answer: Option C


This Question Belongs to Java Program >> Flow Control

Join The Discussion

Related Questions on Flow Control