Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    $n = 0x6db7;
    print $n<<8;
    ?>
    1. Error
    2. 0
    3. 7190272
    4. 8
    5. 0x6db7
Correct Option: C

The output is in decimal.



Your comments will be displayed only after manual approval.