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

Discussion :: PHP - CS

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

    <?php

    $one = "Hello";

    $two = "World";

    echo $one, $two;

    ?>

  2. A.

     Hello World

    B.

     Hello

    C.

     World

    D.

     HelloWorld

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    Echo can print two variables which are seperated by a comma.


Be The First To Comment