MCQs > IT & Programming > PHP > What's the output? function luckyA (&$beebar){ $beebar *= 2; return $beebar; } $x= 4; $y = luckyA($x); $x += 5; echo $x . ', ' . $y;

PHP MCQs

What is the output of the following code? function luckyA (&$beebar){ $beebar *= 2; return $beebar; } $x= 4; $y = luckyA($x); $x += 5; echo $x . ', ' . $y;

Answer

Correct Answer: 13, 8

Explanation:

Note: This Question is unanswered, help us to find answer for this one

PHP Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

PHP Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it