Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code?

    <?php

    echo(atan(0.50));

    ?>

  2. A.

     0.11845976421345

    B.

     0.23568451142521

    C.

     0.46364760900081

    D.

     1

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    The atan() function returns the arc tangent of arg as a numeric value between -Pi/2 and Pi/2 radians.


Be The First To Comment