"/>
Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    $i = 0;

    $j = 0;

    if ($i && ($j = $i + 10))

    {

    echo "true";

    }

    echo $j;

    ?>

  2. A.

     10

    B.

     0

    C.

     true0

    D.

     true10

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    In if condition when the first case is 0 and is an && operation then the second command is not executed.


Be The First To Comment