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;
} ?>

A. 5

B. 555555555…infinitely

C. 54321

D. error

Correct Answer :

B. 555555555…infinitely


As it is && operator it is being incremented and decremented continuously.

Related Questions

If session.use_cookie is set to 0, this results in use of.. What will be the output of the following PHP code? <?php $a = array(A,… The date() function returns ___ representation of the current date and/or… 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 define(GREETING,… Which of the following PHP statements will output Hello World on the screen?i)… Say you want to calculate the date 45 days from the present date which… What will be the output of the following PHP code ? <?php $color1 =… What will be the output of the following PHP code ? <?php $i = 5;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 $i = 0;while(++$i… If the format is F then which one of the following will be returned? What will be the output of the following PHP code? <?php $a = array(red,… What will be the output of the following PHP code? <?php $cars = array(Volvo,… What will be the output of the following PHP code ? <?php define(__LINE__,… Which one of the following is the very first task executed by a session… What will be the output of the following PHP code ? <?php $i = 5;while… Which of the following is/are a PHP code editor?i) Notepadii) Notepad++iii)… Which one of the following function is useful for producing a timestamp… 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 define('IF',… What will be the output of the following PHP code ? <?php $i = 0;while… 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 $a1 = array(red,… What will be the output of the following PHP code ? <?php $color1 =… What will be the output of the following PHP code? <?php $cars = array(Volvo,… Which function displays the web pages most recent modification date? Which directive determines how the session information will be stored? What will be the output of the following PHP code ? <?php class myObject…