Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    echo 7 * 5 / 4 + 10;
    ?>
    1. Error
    2. 10
    3. 18
    4. 18.75
    5. None of these
Correct Option: D

Operator precedence order must be followed.



Your comments will be displayed only after manual approval.