Q. What will be the output of the following PHP code ?
Code:
<?php
$p = 50;
$q = 60;
if ($p > $q && 1||1)
print "Executed...." ;
else
print "Not Executed....";
?>
β
Correct Answer: (C)
Executed....