Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

hinom

Challenge for ZEND PHP5 Certification - 014

Exercise 14  

9 votos

  1. 1. zFor the following code, which the following sequence will run successfully?

    • A. Expenses();Salary();Loan();Balance();
      9
    • B. Salary();Expenses();Loan();Balance();
      0
    • C. Expenses();Salary();Balance();Loan();
      0
    • D. Balance();Loan();Salary();Expenses();
      0


Recommended Posts

exercise 14

 

For the following code:

 

<?php
function Expenses()
{
function Salary()
{

}
function Loan()
{
function Balance()
{
}
}

}
?>

 

Which the following sequence will run successfully?

 

a. Expenses();Salary();Loan();Balance();

b. Salary();Expenses();Loan();Balance();

c. Expenses();Salary();Balance();Loan();

d. Balance();Loan();Salary();Expenses();

Compartilhar este post


Link para o post
Compartilhar em outros sites

Answer: A

 

 

Explanation

 

<?php
function Expenses()
{

	function Salary()
	{

	}
	function Loan()
	{
		function Balance()
		{

		}
	}

}
?>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.