Computer Science, asked by Aman8986, 11 months ago

The += operator is used to add the right hand side value to the left hand side variable. True or False ​

Answers

Answered by sswaraj04
4

Answer:

True

Explanation:

+= is a shorthand operator

x+=5 means x = x + 5

It adds right side value to left side variable

Similar questions