go to previous page   go to home page   hear noise

Answer:

Using the De Morgan Rule

!(A && B && C) is equivalent to !A || !B || !C

The expression

boolean noDriving = !(daylight && passenger.age >= 21  && passenger.licensed );

is equivalent to

boolean noDriving = !daylight || !(passenger.age >= 21) ||  !passenger.licensed ;

which can be further transformed to

boolean noDriving = !daylight || passenger.age < 21 ||  !passenger.licensed ;

Not at the Beginning and Not in the Middle of the Chapter

If you are not interested or do not have the time, you may not wish to review the following.


go to previous page   go to home page