Trying to rub the dust from my math knowledge, I am trying to understand, or perhaps recall, the Modular Arithmetic and Modulo Operation but I kinda can't get what the differences are between these two is ? From Wikipedia :
This section is about the (mod n) notation. For the binary mod operation, see modulo operation.
The modulo operation (I will use $\%$ for that here) is an operation, like addition, subtraction, multiplication and division. It is something you do to two numbers to get a result. For instance, $12\mathbin\%10 = 2$.
Modular arithmetic uses a relation, like equals, less-than and divides. It is something you do to compare two numbers. For instance, $12\equiv 2\pmod{10}$. Note that $\pmod{10}$ here is part of the $\equiv$. It might be clearer if we write something like $12\equiv_{10}2$, although that's not standard notation.
Arithmetic modulo $10$ means, somewhat simplified, "Use ${}\mathbin\%10$ on everything, all the time, before you compare them with $=$."