1.

What will be the output of the following PHP code ?
<?php
$n = 10;
{
$n = 20;
echo "$n";
}
echo "$n";
?>

A. 10
B. Error
C. 20
D. 2020
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs