Question:What will be the output of the following code?

$Rent = 250;
function Expenses($Other)
{
    $Rent = 250 + $Other;
    retum $Rent;
}
Expenses(50);
echo $Rent; 

A 300 

B 250 

C 200 

D Program will not compile 

+ Answer
+ Report
Total Preview: 249

Copyright © 2024. Powered by Intellect Software Ltd