Assignment Operators (Optional)

Matching exercise

    
Match the items on the right to the items on the left.
=
+=
-=
*=
/=
%=
assigns values from right side operands to left side operand
adds right operand to the left operand and assign the result to left
subtracts right operand from the left operand and assign the result to left operand
mutiply left operand with the right operand and assign the result to left operand
divides left operand with the right operand and assign the result to left operand
calculate modulus using two operands and assign the result to left operand