Correct answers in a row: 0
		
		
		====== Java Operator Precedence ======
Precedence Hierarchy of common operators (from highest to lowest):
		
Types of Operators                     Symbols             Example Uses:
-----------------------------------------------------------------------------------
Unary Operators                        -n, !, ++, --       (-7) * 4,  !myBoolean
-----------------------------------------------------------------------------------
Multiplication, Division, Modulus      *, /, %             7 % 4
-----------------------------------------------------------------------------------
Addition, Subtraction                  +, -                7 + 4
-----------------------------------------------------------------------------------
Relational Operators                   <, >, <=, >=        y > x
-----------------------------------------------------------------------------------
Equality Operators                     ==, !=              y != x
-----------------------------------------------------------------------------------
Logical Operators (& beats |)          &, |                myBool & yourBool
-----------------------------------------------------------------------------------
Short-Circuit (&& beats ||)            &&, ||              myBool || yourBool
-----------------------------------------------------------------------------------
Assignment Operators                   =, +=, -=           x += 5
====== Java Operator Precedence ======