Computer Science, asked by rohitthakur62790, 6 months ago

e)What will be the output of the following code? (2)
x,y=4,8
z=x/y*y
print(z)​

Answers

Answered by Cuteepi
1

Answer:

4

Explanation:

x/y*y

z=4/8*8

z=1/2*8

z=4

Similar questions