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

Discussion :: PHP - CS

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

    <?php

    $i = 10;

    $j = 0;

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

    {

    echo "true";

    }

    echo $j;

    ?>

  2. A.

     20

    B.

     true0

    C.

     0

    D.

     true20

    View Answer

    Workspace

    Answer : Option B

    Explanation :

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


Be The First To Comment