1.

What will be the output of the following PHP code?
<?php
$math = "25 students";
$Science = 35;
$math = $math + $Science;
echo "$math";
?>

A. 25
B. 35
C. Error
D. 60
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs