Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    $x = 3.5;

    $y = 2;

    $z = 2;

    echo $x / $y / $z;

    ?>

  2. A.

     1.75

    B.

     0.875

    C.

     3.5

    D.

     Error

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    First $x / $y is evaluated then this is divided by $z therefore we get 0.875.


Be The First To Comment