0
Know the answer
>>> x=3 Num=17 Print(num%x)
4 Respuestas
+ 5
Depends on language, but a compile error is what I expect, since num is undefined. Print isn't likely defined either. Your best bet is to run this and see for yourself. If you have trouble understanding what happened, post a link to the code when asking for help.
+ 5
17%3 finds the remainer. 3 goes into 17 5 times for 15. 17-15=2 so
x=3
num=17
print(num%x)
displays 2.
+ 1
thank u