Write the output of following code:
A,B=30,40
C=B%A
print(C)
Answers
Answered by
1
Answer:
% gives remainder
so 40%30 = 10
C =10
OUTPUT:
10.
Answered by
0
A,B=30,40
C=B%A
print(C)
C=B%A= 40%30= 10(remainder when 40 divided by 30)
10
Similar questions