-
What will be the output of the following PHP code ?
<?php
$First = "Interview ";
$Second = "Mania";
echo "$First$Second";
?>
-
- Interview
- Interview Mania
- Mania
- Error
- None of these
Correct Option: B
Even though both the variables are inside the double-quotes, the value of the variable is substituted and then printed to the screen.