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 

+ Answer
+ Report
Total Preview: 1295

Copyright © 2024. Powered by Intellect Software Ltd