Q. What is the output?
Code:
echo is_numeric('123abc') ? 'Yes' : 'No';
β
Correct Answer: (B)
No
Explanation: '123abc' is not purely numeric.