Q. What will be the output?
Code:
$a = "10"; $b = 5; echo $a + $b;
β
Correct Answer: (B)
15
Explanation: PHP converts string '10' to integer and performs addition.