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 + $n) >! ($n - $s));
    ?>
    1. 1
    2. 10
    3. 11
    4. 12
Correct Option: A

Negation of a number is 0.



Your comments will be displayed only after manual approval.