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