Q. What will be the output of the following PHP code ?
Code:<?php
$p = 25;
$q = 50;
$r = 15;
if ($p / $q / $r)
print "Jitendra";
else
print "Majumdar";
?>
β
Correct Answer: (C)
Jitendra
<?php
$p = 25;
$q = 50;
$r = 15;
if ($p / $q / $r)
print "Jitendra";
else
print "Majumdar";
?>
You must be Logged in to update hint/solution