A
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....";
?>
$p = 50;
$q = 60;
if ($p > $q && 1||1)
print "Executed...." ;
else
print "Not Executed....";
?>
- Correct Answer - Option(C)
- Views: 14
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.