23
Question Question 23
To increase the value of x five times using an augmented assignment operator, the correct expression will be
- x += 5
- x *= 5 ✓
- x = x ** 5
- none of these
To increase the value of x five times using an augmented assignment operator, the correct expression will be