Answers for "Use the correct assignment operator that will result in x being 15 (same as x = x + y)."

0

Use the correct assignment operator that will result in x being 15 (same as x = x + y).

x = 10;
y = 5;
x += y;
Posted by: Guest on October-30-2021
0

Use the correct assignment operator that will result in x being 50 (same as x = x * y).

x = 10;
y = 5;
x 
*=
 y;
Posted by: Guest on October-30-2021

Browse Popular Code Answers by Language