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