Q. Operation “a = a * b + a” can also be written as ___________ (Solved)
1. a *= b + 1;
2. (c = a * b)!=(a = c + a);
3. a = (b + 1)* a;
4. All of the mentioned
- d. All of the mentioned
1. a *= b + 1;
2. (c = a * b)!=(a = c + a);
3. a = (b + 1)* a;
4. All of the mentioned