Home > Java Programming > Flow Control > Questions and Answers
Q: |
public class While { public void loop() { int x= 0; while ( 1 ) /* Line 6 */ { System.out.print("x plus one is " + (x + 1)); /* Line 8 */ } } } Which statement is true? | ||||||||||
|
Comment on this Question | |
Name: | |
|