- 
					 What will be the output of the following PHP code?
<?php
function m()
{
echo "m is executed...";
}
function n()
{
m();
echo "\nn is executed... \n";
m();
}
n();
?> 
- 
                        
- Error
 - m is executed...
 - n is executed...
 -  m is executed...
n is executed... -  m is executed...
n is executed...
m is executed... 
 
Correct Option: E
Simple order of execution.