How many times will Hello World be printed in the following program segment? int count = 10;

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++;
}

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: