Question:What will be the output of the following PHP code <?php $Rent = 250; function Expenses($Other) { $Rent = 250 + $Other; return $Rent; } Expenses(50), echo $Rent; ?>
A 200 B 300 C 0 D Program will not compile
+ AnswerD
+ Report