Q. What is the output of: echo '5' + 10;
β
Correct Answer: (A)
15
Explanation: PHP automatically converts the string '5' to number 5 and adds 10.