Question: For the following code: <?php Function Expenses() { Function Salary() { } function Loan() { function Balance() { } } } ?> Which of the following sequence will run successfully?
A
B
C
D
(); Loan(); BalanExpenses(); Salaryce();
B
Salary(); Expenses(); Loan(): Balance();
C
Expenses(); Salary(); Balance(); Loan();
D
Balance(); Loan(); Salary(); Expenses();
Note: Not available