PHP Functions
What will be the output of the following PHP code ?
$x = 75;
$y = 25;
function addition()
{
$GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y'];
}
addition();
echo $z;

100
25
75
error

ANSWER DOWNLOAD EXAMIANS APP