Question:What will be the output of the following code?
$var = 10;
function fn()
{
   $var = 20;
   return $var;
}
fn();
echo $var; 

A 10 

B 20 

C Undefined Variable 

D Syntax Error 

+ Answer
+ Report
Total Preview: 604

Copyright © 2025. Powered by Intellect Software Ltd