1.

What will be the output of the following PHP code ?
<?php
$k = 10;
while ($k < 30)
{
$k++;
}
print $k;
?>

A. 30
B. 10
C. Error
D. Nothing
E. None of these
Answer» B. 10


Discussion

No Comment Found

Related MCQs