Let $a\%b$ be the modulo operation, returning the remainder of $a$ when divided by $b$. Is it true that: $$\left(\frac{a}{b}\right)\% 5 = \frac{(a\% 5)}{(b\% 5)}$$
For instance, for $a=10$ and $b=2$ we have
$$\left(\frac{a}{b}\right)\%5=5\%5=0$$ $$\frac{(a\% 5)}{(b\% 5)}=\frac{(10\% 5)}{(2\% 5)}=0$$
Is this always true?