1.

What will be the output of the following PHP code ?
<?php
$n = 10;
$m = 10;
if ($n && ($m = $n + 10)) {
echo "True";
}
echo $m;
?>

A. 20
B. 10
C. True
D. True20
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs