As someone currently dealing with a lot of Java code, I love that Java only has && and not "and", it allows Java programmers to construct simple, easy-to-understand constructs like this:
if (true && false == true) {
return new BooleanFactory(true);
} else {
return new BooleanFactory(false);
}