What will be the output of the following php code? $num = 1; $num1 = 2; print $num . “”+””. $num1;

What will be the output of the following php code?
$num = 1;
$num1 = 2;
print $num . “”+””. $num1;
1+2
Well Done. Your Answer is Correct Keep it Up!
3
4
$num . “”+””. $num1;

Leave a Reply

Your email address will not be published. Required fields are marked *