Q. What is the output of 10 + '5' in PHP? (A) 15 (B) 105 (C) Error (D) '105' ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) 15 Explanation: PHP automatically converts the string '5' to an integer before addition.