ExamVeda
Login
Home
This question belongs to PHP Functions
Functions
?

What will be the output of the following PHP code?
<?php
function b()
{
    echo "b is executed";
}
function a()
{
    b();
    echo "a is executed";
    b();
}
a();
?>

Answer & Solution
Correct Answer: Option D
imple order of execution.
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.