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

Discussion :: PHP - CS

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

    <?php

    echo "chr(52)";

    ?>

  2. A.

     1

    B.

     2

    C.

     3

    D.

     4

    View Answer

    Workspace

    Answer : Option D

    Explanation :

    The chr() function returns a character from the specified ASCII value. Since the ASCII value of 4 is 52, thus 4 was displayed.


Be The First To Comment