Solved

CounterLoop = 1;

Question 33

Essay

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?

Correct Answer:

verifed

Verified

The placement of the statement-ending se...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions