Answered You can hire a professional tutor to get the answer.
What is the output of the following code. Please explain your answer. lt;?php $x = 4; $y = 3; function fun($x = 3, $y = 4) { $z = $x+$y/$y+$x; echo
echo "$z";
} echo $x; echo $y; echo $z; fun($x, $y); ?>