Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    echo 10 * 15 / 12 + 14
    ?>
    1. 10
    2. 26.5
    3. 15
    4. 14
    5. 12
Correct Option: B

Operator precedence order must be followed.



Your comments will be displayed only after manual approval.