5.121 ____ simplifies expression in which ! is applied to && or ||

This showed up on my quiz in Java. I have no idea what it is and it is not multiple choice. Could someone help me?

link|improve this question
feedback

1 Answer

The answer the teacher is probably looking for is De Morgan's laws. You can take an expression such as !p && !q and rewrite it as !(p || q), which is arguably easier to read. This is actually a universal law of booleans that is not particular to any language like java.

link|improve this answer
You beat me to it :) I would say that in general, it depends on what p & q are as to which one is easier, but using De Morgan's lets you switch between the two representations as required. – Dean Harding Oct 18 '10 at 1:27
Yeah De Morgan's law is the answer! +1 – fastcodejava Oct 18 '10 at 1:29
I usually use De Morgan's to go the other way so I required fewer parentheses. It's a lot easier, IMO, to read a large if block if each boolean expression is on its own line and isn't nested. It's also easier if you can make them all && or || too. – KitsuneYMG Oct 18 '10 at 1:57
@KitsuneYMG: The differences are very slight. As long as you don't do: Boolean result = (p) ? Boolean.FALSE : Boolean.TRUE :P – Mike Axiak Oct 18 '10 at 2:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.