Home

What is the correct answer?

4

What will be the output of the following PHP code ?
 <?php  $i = 5;
while (--$i > 0){ $i++;
print $i;
print hello;
} ?>

A. 4hello4hello4hello4hello4hello…..infinite

B. 5hello5hello5hello5hello5hello…..infinite

C. no output

D. error

Correct Answer :

A. 4hello4hello4hello4hello4hello…..infinite


i is decremented in the first while execution and then continuously incremented back.

Related Questions

What will be the output of the following PHP code ? <?php $i = 2;while… What will be the output of the following PHP code ? <?php define('GREETING_TEST',… What will be the output of the following code? If say date is 22/06/2013.… The date() function returns ___ representation of the current date and/or… What will be the output of the following PHP code ? <?php $i = 0;while… What will be the output of the following PHP code ? <?php $i = 0;while… PHP files have a default file extension of.. What will be the output of the following PHP code ? <?php $color =… What will be the output of the following PHP code ? <?php /*echo Hello… What will be the output of the following PHP code? <?php $a = array(a=>red,… What will be the output of the following PHP code? <?php $age = array(Peter=>35,… What will be the output of the following PHP code ? <?php $color1 =… If the format is F then which one of the following will be returned? A PHP script should start with ___ and end with ___: Which one of the following function is useful for producing a timestamp… What will be the output of the following PHP code ? <?php define(GREETING,… Say you want to calculate the date 45 days from the present date which… If the directive session.cookie_lifetime is set to 3600, the cookie will… What will be the output of the following PHP code ? <?php $color =… What will be the output of the following PHP code ? <?php define(GREETING,… What will be the output of the following PHP code ? <?php $i = ;while… Which one of the following is the default PHP session name? What will be the output of the following PHP code ? <?php define(VAR_NAME,test);${VAR_NAME}… What will be the output of the following PHP code ? <?php $color1 =… What will be the output of the following PHP code ? <?php define('IF',… What will be the output of the following PHP code ? <?php define(NEW_GOOD_NAME_CONSTANT,… What will be the output of the following PHP code ? <?php $i = 2;while… What is the default time(in seconds) for which session data is considered… What will be the output of the following PHP code? If say date is 22/06/2013.… What will be the output of the following PHP code ? <?php $i = 0;while(++$i…