Q. What will be the output of the following PHP code ?
Code:
<?php
$n;
if ($n == 0)
print "MCQ" ;
else
print "Buddy";
print "App"
?>
β
Correct Answer: (D)
Buddy App