.
public class Not {
public static void main(String args) {
System.out.println(!false);
System.out.println( !(5>=1) );
}
}
Line 4 has a code statement that is incomplete. Use each Boolean operator no more than once to replace the empty comments /**/. The code statement should print out false.