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

Discussion :: PHP - CS

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

    <?php

    one = 1;

    two = 2;

    three = 3;

    four = 4;

    echo "one / two + three / four";

    ?>

  2. A.

     0.75

    B.

     0.05

    C.

     1.25

    D.

     Error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    Variables should start with a $ symbol, since one, two, three, four don’t begin with $ symbol we’ll get an error.


Be The First To Comment