Question:What will be the output of the following code?$Rent = 250Function Expenses($Other){ $Rent = 250 + $Other; Return $Rent;}Expenses(50);Echo $Rent;
A 300 B 250 C 200 D Program will not compile
+ AnswerB
+ Report