A
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";
?>
$num1 = 25;
$num2 = 27;
if ($num1 > $num2 && 1||1)
print "Jitendra" ;
else
print "Majumdar";
?>
- Correct Answer - Option(C)
- Views: 19
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.