PHP Functions
What will be the output of the following PHP code ?
$var = 10;
function one()
{
echo $var;
}
one();

None of the Mentioned
10
No Output
Error

ANSWER DOWNLOAD EXAMIANS APP