Question: counterLoop = 1; while(counterLoop < 10); { System.out.println(Hello); counterLoop = counterLoop + 1; } ? What is the problem in the above while loop? How
counterLoop = 1;
while(counterLoop < 10);
{
System.out.println("Hello");
counterLoop = counterLoop + 1;
}
?
What is the problem in the above while loop? How would you correct the problem?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
