> i'm hell confused here. following expressions are
> invalid but i dont know why:
>
> 8&& 5
What types are the operands of the short-circuit AND?
http://java.sun.com/docs/books/tutorial/java/nutsandbolts/op2.html
> 10 > 8 >5
Evaluating left to right, a ⊙ b ⊙ c ≡ (a ⊙ b) ⊙ c
> ! 10 > 8
Operator precedence
> 5 II 8 < 10
Operator precedence
What type are the operands of the short-circuit OR?
> 8+3 = 7+ 4
lvalue assignment
> true > false
What possible types are the operands of the < operator?