How many times will the following code print “Welcome to Jav…

Questions

Hоw mаny times will the fоllоwing code print "Welcome to Jаvа"? int count = 0;do {  System.out.println("Welcome to Java");} while (count++ < 10);