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 + $k) < ($j - $k));

    ?>

  2. A.

     1

    B.

     true

    C.

     false

    D.

     0

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    True is 1.


Be The First To Comment