Numeric Math Functions Oracle PLSQL

SQL>
SQL> --MOD(x, y):Returns the remainder when x is divided by y.
SQL>
SQL> select MOD(8, 3) from dual;
  MOD(8,3)
----------
         2
SQL>