Q. What will be the output of the following PHP code ?
Code:
<?php
$num1 = 25;
$num2 = 27;
if ($num1 > $num2 && 1||1)
print "Jitendra" ;
else
print "Majumdar";
?>
β
Correct Answer: (C)
Jitendra