/*
 * Boolean Logic
 * 
 * Paper Exercises:
 * 
 * (1) Practice your knowledge of boolean logic.  For each statement below, determine 
 * whether it evaluates to True or False.  Then check your answers by 
 * entering the statement into the Dr. Java interactions pane
 
 *  (2>1)&&(3<=4) 
 *  (1==1)&&(2==2)
 *  ('A'<='A')&&('c'!='d') 
 *  (2>7)&&(5>=20) 
 *  !(2>5) 
 *  (2==2)||(3>5) 
 *  (5>17)||(4!=9) 
 *  (1==1)&&(2==3) 
 *  (4<3)||(2==1) 
 *  (3!=3)||(4>=8) 
 *  !(3==3) 
 *  ('a'!='a')&&('b'!='q') 
 *  (3==3)||(7<9)
 *
 *        
 **/
