Numeric Math Functions Oracle PLSQL

SQL> --ASIN(x):Returns the arcsine of x.
SQL>
SQL> select ASIN(1) from dual;
   ASIN(1)
----------
1.57079633
SQL>