"> What will be the output of the following PHP code ?<?php$First

Home » PHP » PHP Echo/Print » Question
  1. What will be the output of the following PHP code ?
    <?php
    $First = "Ajit";
    $Second = "Ats";
    print($First $Second);
    ?>
    1. First
    2. Second
    3. Ajit
    4. Ats
    5. Error
Correct Option: E

The above syntax will produce an error, unlike the echo statement.



Your comments will be displayed only after manual approval.