ICSE Class 10 Computer Applications
Question 20 of 26
Operators in Java — Question 20
Back to all questions 20
Question Question 20
Rewrite the following statements without using shorthand operators.
a. p /= q
b. p -= 1
c. p *= q + r
d. p -= q - r
a. p = p / q
b. p = p - 1
c. p = p * (q + r)
d. p = p - (q - r)