Discussion Forum : Php Functions
Question - What will be the output of the following PHP code?function b() {echo "b is executed";}function a(){b();echo "a is executed";b();}a();
Options:
A .  b is executeda is executed
B .  b is executedb is executedb is executed
C .  a is executed
D .  b is executeda is executedb is executed
Answer: Option D

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *