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

Discussion :: PHP - CS

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

    <?php

    echo "echo "Hello World"";

    ?>

  2. A.

     Hello world

    B.

     echo “Hello world”

    C.

     echo Hello world

    D.

     Error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    It would have printed echo “Hello world” if the statement was echo “echo ”Hello World””;.


Be The First To Comment