Question: How many times will Hello World be printed in the following program segment? int count = 10; while (count < 1) { System.out.println(Hello World); count++;
How many times will "Hello World" be printed in the following program segment?
int count = 10;
while (count < 1)
{
System.out.println("Hello World");
count++;
}
Step by Step Solution
3.42 Rating (161 Votes )
There are 3 Steps involved in it
Operators are symbols that perform operations on v... View full answer
Get step-by-step solutions from verified subject matter experts
