Home » PHP » PHP Operators » Question
  1. What will be the output of the following PHP code ?
    <?php
    $n = 'n' ;
    print $n * 8;
    ?>
    1. n
    2. 8
    3. 0
    4. 1
    5. None of these
Correct Option: B

Characters cannot be multiplied.



Your comments will be displayed only after manual approval.