Q. What will be the output of the following PHP code ?
Code:
<?php
$n = 128;
switch($n)
{
case "n":
print "Welcome to";
break;
case 128:
print "MCQ";
break;
default:
print "BUDDY";
}
?>
β
Correct Answer: (C)
MCQ