A
Q. What will be the output of the following PHP code ?
Code:
<?php
$Country1 = "INDIA";
$Country2 = "1";
$Country3 = "USA";
echo "$Country1" + "$Country2" . "$Country3";
?>
$Country1 = "INDIA";
$Country2 = "1";
$Country3 = "USA";
echo "$Country1" + "$Country2" . "$Country3";
?>
- Correct Answer - Option(D)
- Views: 25
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.