Q. What will be the output of the following PHP code ?
Code:
<?php $color1 = "red"; $color2 = "1"; $color3 = "grey" echo "$color1" + "$color2" . "$color3"; ?>
β
Correct Answer: (A)
1grey