

InterviewSolution
Saved Bookmarks
1. |
What do you mean by Augmented Assignment operators? |
Answer» Augmented assignment\xa0is the combination, in a single statement, of a binary operation and an\xa0assignment\xa0statement. ...e.g. a += 1\xa0means\xa0a is assigned a+1.\xa0They are\xa0useful because\xa0they\xa0reduce the length of the code and make it look cleaner. | |