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

Discussion :: PHP - CS

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

    <?php

    $one = "one";

    $two = "two";

    print($one==$two);

    ?>

  2. A.

     true

    B.

     false

    C.

     nothing

    D.

     error

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    Since we are equating two unequal strings we do not get any output.


Be The First To Comment