✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Assume that we have the following Java code:
class Thing { static double foo = 3.5; static int bar = 1; public void baz( ){ int bar = 22; int x = 0; while(x < 4){ int bar = 99; System.out.println(bar); x += 1; }}
What would be the output of the println call in the baz method?