Q. What will be the output of the following PHP code ?
Code:<?php
if (0.25)
print "Jitendra" ;
else
print "Majumdar";
?>
β
Correct Answer: (B)
Jitendra
<?php
if (0.25)
print "Jitendra" ;
else
print "Majumdar";
?>
You must be Logged in to update hint/solution