+ 1
What does modulo mean?
Please answer because im stuck
3 Answers
+ 7
georgia ,
i have a link to a short tutorial from the community section that is describing quotient, remainder and modulo.
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/4430/?ref=app
if you like to get examples from other languages, you can try it yourself at the mentioned location or use google search.
+ 3
In computing, the modulo (sometimes called modulus, or mod)Â operation finds the remainder of division of one number by another. Given two positive numbers, a (the dividend) and n (the divisor), a modulo n (abbreviated as a mod n) is the remainder of the Euclidean division of a by n.
Ref:
https://www.computerhope.com/jargon/m/modulo.htm
https://en.m.wikipedia.org/wiki/Modulo_operation
+ 1
Thank you very much for your helpđ€đ»