#40Multiple Choice
Given: int x = 0; int y = 10; do { y--; ++x; } while (x < 5); System.out.print(x + "," + y); What is the result?
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started FreeGiven: int x = 0; int y = 10; do { y--; ++x; } while (x < 5); System.out.print(x + "," + y); What is the result?
Premium Content
Create a free account to preview more questions, or enroll for full access.
Get Started Free