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

Discussion :: PHP - CS

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

    <?php

    int $one = 1;

    echo "$one";

    ?>

  2. A.

     0

    B.

     1

    C.

     $one

    D.

     Error

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    Unlike other programming languages there are no data types in PHP.


Be The First To Comment