JAVA Flow Control
1. public class Test{2. public static void main(String [] args){3. int x = 0;4. // insert code here5. do{ } while(x++ < y);6. System.out.println(x);7. }8. }Which option, inserted at line 4, produces the output 12?

int y = 11;
int y = 10;
None of these
int y = 12;
int y = x;

ANSWER DOWNLOAD EXAMIANS APP