JAVA Flow Control
What all gets printed when the following program is compiled and run?public class Test{ public static void main(String args[]){ int i=0, j=2; do{ i=++i; j--; }while(j>0); System.out.println(i); }}

1
0
None of these
The program does not compile because of statement "i=++i;"
2

ANSWER DOWNLOAD EXAMIANS APP