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

Operator precedence order must be followed.



Your comments will be displayed only after manual approval.