Computer Science, asked by mirfayzanfazu642, 3 months ago

What will be output of following code:

A,B,C,D=9.2, 2.0, 4, 21

print(A/4)

print(A//4)

print(B**C)

print(A%C)​

Answers

Answered by mohdsharif771599
3

Answer:

print(B**C)

Explanation:

becoz it is

Answered by OMGYASH
3

Answer:

output of print(A/4)=9.2/4=2.3

output of print(A//4)=I don't know sorry

output of print(B**6)=I don't know sorry

output of print(A%C)=Indefinite

Similar questions