Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    $m = 10; $n = 11; $s = 12;
    print !(($m + $s) < ($n - $s));
    ?>
    1. Error
    2. 1
    3. Nothing
    4. 0
    5. None of these
Correct Option: B

True is 1.



Your comments will be displayed only after manual approval.