Consider the following program code:
1.$x = 100;
2.$y = "-25";
3.$sum = $x + $y;
4.
5.print $sum;
What is the result of executing this program code?
The code will output the following:
100-25
75
The code will fail at line 3 because $y contains string data.
125
Submit