Computer Science, asked by riyacool2006, 10 months ago

Find output of the program: A=2 B=7 C=A+B print(A,B,C) A=A*B+C C=B+A print(A,B,C)

Answers

Answered by amlandash02
1

Answer:

A=126

C=9

Explanation:

if A=2

B=7

C=A+B

then C=7+2=9

A=A*B+C

2*7+9

=123

then C=B+A

=7+2=9

Similar questions