"> What will be the output of the following PHP code ? < ?php $hello = "Hello W "> " /> " />
Sail E0 Webinar
Question
What will be the output of the following PHP code ?
< ?php
$hello = "Hello World";
$bye = "Bye";
echo $hello;"$bye";
?>
Options:
A .  Hello World
B .  Bye
C .  Hello worldBye
D .  Error
Answer: Option A


Since there is a semi-colon in between $hello and $bye, the line ends at $hello. However $bye would have printed if a echo was present before "$bye.



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers