1.

What will be the output of the following PHP code ?
<?php
$num1 = 5;
$num2 = 5;
if ($Res = (($num1 == 5) && ($num2 != 0)))
{
print "Result is $Res";
}
?>

A. 5
B. true
C. 0
D. Result is 1
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs