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