📚 Practice Mode
Java Programming Fundamentals
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
What is the output of the following program? public class example { public static void main(String args[]) { int x=0, y=2; do { x=++x; y--; } while(y>0); System.out.println(x); } }
- 0
- 1
- 2
- Compilation Error