Computer Science, asked by dsbshah, 5 months ago

Which one of the following pairs are correct
Assignment Operators Equivalent to
A
x = y
x = x+y
B
x += y
x = x+y
С
X -- y
X = X-y
D
x *= y
x*x = y​

Answers

Answered by RISHIsd
1

Answer:

x*x = y 50625

Explanation:

A

x = y

x = x+y

B

x += y

x = x+y

С

X -- y

X = X-y

D

x *= y

x*x = y 50625

Similar questions