Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    echo 5 * 9 / 3 + 9;

    ?>

  2. A.

     24

    B.

     3.7

    C.

     3.85

    D.

     0

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Operator precedence order must be followed.


Be The First To Comment