Computer Applications
Answer
Java provides shorthand assignment operators for all the arithmetic binary operators. Shorthand assignment operators follow the below syntax:
variable = variable operation expression;
Taking the example of shorthand addition operator, the expression x = x + 3
can be rewritten as x += 3;