1.

What will be the output of the following PHP code ?
<?php
$t = 20;
do
{
$t++;
}
while ($t < 60);
print $t;
?>

A. Error
B. 60
C. Nothing
D. 20
E. None of these
Answer» C. Nothing


Discussion

No Comment Found

Related MCQs