Operators in java

  i. Arithmetic Operator

Binary :-   +  -  *  /  %

Unary :-  ++  --

Increment Operator 

  1. Pre increment  ( ++ a) first change then used
  2. Post increment   ( a++ )  first used then change

1, Pre Decrement ( --a )  First change then used
2. Post Decrement  ( a-- )  first used then change

Relational Operator
    ==   !=    >     <     >=     <=

Logical Operator
    &&    ||      !

Bitwise Operator
    &  Binary AND


     |  Binary OR


    ^  Binary XOR

    ~  Binary one's complement

   <<   Binary left shift  

   >>   Binary right shift