Numeric Math Functions Oracle PLSQL

SQL>
Syntax: MOD(,)
SQL>
SQL>
SQL> SELECT
  2     MOD(10,5) remainder1,
  3     MOD(10,3) remainder2 from dual;
REMAINDER1 REMAINDER2
---------- ----------
         0          1