1 public class CondAndTest3 {2 3 public static void main(String [] args){4 5 boolean y = true;6 if (false && y){7 boolean x = true;8 }9 }10 }11