Numeric Math Functions Oracle PLSQL

SQL> --ACOS(x): Returns the arccosine of x.
SQL>
SQL> select ACOS(1) from dual;
   ACOS(1)
----------
         0
SQL>