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