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