boolean havingFun,amTired; int i,j; havingFun= true; amTired= false; i= 0; j= 10;
Given these variable declarations and initializations, do the following:
NOTE: One of the expressions is not a boolean expression. You will not be able to encode that one in your program. When calculating by hand, identify which expression is bogus. Here are the expressions to be evaluated:
amTired
i < 0
j < i || j < 100
i < j < 100
!amTired || havingFun && i>10
!havingFun || j >0 || amTired
!(i>0 && !havingFun) || amTired