1.

<?php$i=10;function sample($i){ $i+=2; GLOBAL $i; echo $i+$i,",";}echo $i.",";GLOBAL $i;sample($i);echo $i;?>19.Predict the output of the following code snippet :

A. 201010
B. 202010
C. 101010
D. 201020
Answer» B. 202010


Discussion

No Comment Found