Q. What will be the output of the following PHP code ?
Code:
<?php
$num = 12;
if (echo $num)
print "True";
else
print "False";
?>
β
Correct Answer: (D)
Error