Solved

What Is Wrong with the Following Code? X=1;

Question 42

Multiple Choice

What is wrong with the following code? x=1;
While (x<5) ;
 { System.out.println (x) ;
   x++;
}


A) Syntax error in the println method
B) Incorrect use of prefix increment operator
C) Semicolon at the end of the while expression
D) Incorrect initialization

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions