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
<?php
$n;
if ($n == 0)
print "MCQ" ;
else
print "Buddy";
print "App"
?>
You must be Logged in to update hint/solution