Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code ?

    <?php

    $i = 0;$j = 1;$k = 2;

    print !(( + + $i + $j) > ($j - $k));

    ?>

  2. A.

     1

    B.

     no output

    C.

     error

    D.

     0

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    The equation outputs false .


Be The First To Comment