Solved

CounterLoop = 1; While(counterLoop < 10);

Question 27

Essay

counterLoop = 1;
while(counterLoop < 10);
{
System.out.println("Enter a new value");
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