Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    $x = 30;

    $y = 20;

    $z = 10;

    echo $x + $y - $z / ($z - $y);

    ?>

  2. A.

     41

    B.

     -4

    C.

     -5

    D.

     51

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    First ($z – $y) is evalulated then -$z/($z – $y) is evaluated this results in 1 which is added to $x + $y therefore we get 51.


Be The First To Comment