Q. What will be the output of the following PHP code ?
Code:<?php $Country1 = "INDIA"; $Country2 = "1"; $Country3 = "USA"; echo "$Country1" + "$Country2" . "$Country3"; ?>
β
Correct Answer: (D)
1USA
<?php $Country1 = "INDIA"; $Country2 = "1"; $Country3 = "USA"; echo "$Country1" + "$Country2" . "$Country3"; ?>
You must be Logged in to update hint/solution