Question: What will happen with this code: int a; a = 3; while (a >= 1) {if (a == 2) {int b = -8;} System.out.print(Yay!
What will happen with this code: int a; a = 3; while (a >= 1) {if (a == 2) {int b = -8;} System.out.print("Yay! " + a + ", " + b); a--} An error will be produced. Yay! 3, 0 Yay! 2 -8 Yay! 1, 0 Yay! 3, Yay! 2, -8 Yay! 1, -8 Yay! 3, 0 Yay! 2, -8 Yay! 1, -8
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
