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;while (count < 10) {  System.out.println("Welcome to Java");  count++;}