Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    function calc($num1, $num2)

    {

    $total = $num1 * $num2;

    }

    $result = calc(42, 0);

    echo $result;

    ?>

  2. A.

     Error

    B.

     0

    C.

     42

    D.

     84

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Function does not return anything.


Be The First To Comment