Consider the following Java code fragment. Which of the following statement is true?
|
Line No |
Code Statement |
|
1 |
public class While |
|
2 |
{ |
|
3 |
public void loop() |
|
4 |
{ |
|
5 |
int x = 0; |
|
6 |
while (1) |
|
7 |
{ |
|
8 |
System.out.println(“x plus one is” + (x + 1)); |
|
9 |
} |
|
10 |
} |
|
11 |
} |
1
There is syntax error in line no. 1
2
There are syntax errors in line nos. 1 & 6
3
There is syntax error in line no. 8
4
There is syntax error in line no. 6
5
Question Not Attempted