public class While {     
pub

Loading

โœช Choose the correct option.

public class While {     
public void loop() {
int x= 0;
while ( 1 ) { /* Line 4 */
System.out.print("x plus one is " + (x + 1)); /* Line 5 */
}
}
}

Which statement is true?

A. There is a syntax error on line 1.
B. There are syntax errors on lines 1 and 6.
C. There are syntax errors on lines 1, 6 and 8.
D. There is a syntax error on line 6.