What is the output of the following code?
int x; for(x=0; x<4; x++) { } System.out.print(x+1);
5
4
0
The code will not be compiled