Q. What will be the output of the following PHP code?
Code:
<?php $math = "25 students"; $Science = 35; $math = $math + $Science; echo "$math"; ?>
β
Correct Answer: (D)
60
<?php $math = "25 students"; $Science = 35; $math = $math + $Science; echo "$math"; ?>
You must be Logged in to update hint/solution