Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will the following code do?
int count = 0;
while (count > 10) {
System.out.println("Hello");
}
It will print nothing because the condition is false at the start.
It will print "Hello" indefinitely.
It will print "Hello" 10 times.
It will cause an infinite loop error.
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!