Computer Applications

Identify all the errors in the following repetitive statements.

while (x == y)
{
    xx = yy;
    x = y;
}

Java Iterative Stmts

2 Likes

Answer

The test expression x == y will always remain true as in each iteration x = y is executed, which will store the value of y in x. Thus, an infinite loop will be generated.

Answered By

1 Like


Related Questions