public void test(int x) { int odd = 1; if(odd) /* Line 4 */ { System.out.println(odd); } else { System.out.println(even); } }
Which statement is true?
Reveal answer
Fill a bubble to check yourself
public void test(int x) { int odd = 1; if(odd) /* Line 4 */ { System.out.println(odd); } else { System.out.println(even); } }
Which statement is true?