Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 5;
if (5)
print "First";
if
else
print "Second";
?>
β
Correct Answer: (B)
Error