Computer Science, asked by arundhillon06, 6 months ago

Give the output of following when num 1 =4, num2 =3, num3 =2 num1 += num2 + num3 Print (num 1)​

Answers

Answered by yamanjaikumar
2

Answer:

9

Explanation:

+ operator adds num2 and num3 = 5

then num1 becomes

num1 += 5

num1 = num1 + 5

num1 = 4+5

num1 = 9

Similar questions