Numeric Math Functions Oracle PLSQL

SQL> -- SIN(x):Returns the sine of x.
SQL>
SQL> select SIN(0) from dual;
    SIN(0)
----------
         0
SQL>