eguruchela

Find Remainder value of division


Calculator find the MOD for given values.


 


The MOD function returns the remainder from the division of given number (a) and (b).

The mod(a,b) returns the remainder after division of a by b, where

a is the dividend and

b is the divisor.

This function is often called the modulo operation and is computed.

Example

Find the reminder for 11/2}

Means here 11 is the dividend and 2 is the divisor.

On division we will get 5 as quotient and 1 as remainder.

We can write mod(11,2) = 1