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

Discussion :: PHP - CS

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

    <?php

    $x =4;

    $y = 3;

    function fun($x, $y)

    {

    $z = $x + $y / $y + $x;

    echo "$z";

    }

    echo $x;

    echo $y;

    echo $z;

    fun(3, 4);

    ?>

  2. A.

     437

    B.

     439

    C.

     349

    D.

     347

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    It is same as above but the value passed into the function is 3,4 and not 4,3. Therefore the difference in answer.


Be The First To Comment