"/>
Home / CSE / PHP - CS :: Discussion

Discussion :: PHP - CS

  1. What will be the output of the following PHP code ?

    <?php

    $i = 5;

    while (--$i > 0)

    {

    $i++;

    print $i;

    print "hello";

    }

    ?>

  2. A.

     4hello4hello4hello4hello4hello…..infinite

    B.

     5hello5hello5hello5hello5hello…..infinite

    C.

     no output

    D.

     error

    View Answer

    Workspace

    Answer : Option A

    Explanation :

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


Be The First To Comment