- A int y = x;
- B int y = 10;
- C int y = 11;
- D int y = 12;
Java Programming Language MCQ Java Control Flow
⚠ Report ✓ Question Verified Copy Link
1. public class Test{
2. public static void main(String [] args){
3. int x = 0;
4. // insert code here
5. do{ } while(x++ < y);
6. System.out.println(x);
7. }
8. }
Learn More MCQ Questions from Java Programming Language MCQ Java Control Flow