1 public static void method6() 2 { 3 char x = 'X'; 4 int i = 0; 5 System.out.println(true ? x : 0);//X 6 System.out.println(false ? i : x);//88 7 }