Computer Science, asked by tirathram200819788, 10 months ago

3. What will be the output of the following?
(A)
a,b,c=9,12,3
x=a-b/3+c*2-1
y=a-b/(3+c)*(2-1)
z-a-(b/(3+c)*2)-1
print("x="',x)
print(“y=",y)
print(“z=",z)​

Answers

Answered by vk1030798
1

Answer:

X=10

Y=7

Z=4

Explanation:

X= 9-4+6-1=10

Y=9-12/6*1=7

Z=9-(12/6*2) -1=4

Similar questions