Correct Option: AExplanation: Since the variable initialised is $On_e and the variable in the echo statement is $on_e the echo statement treats $on_e as 0;
Q: What will be the output of the following PHP code?
Correct Option: AExplanation: 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”.