Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

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

    <?php

    $a = 0x6db7;

    print $a<<6;

    ?>

  2. A.

     1797568

    B.

     no output

    C.

     error

    D.

     0x6dc0

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    The output is in decimal.


Be The First To Comment