What will be the output of the following PHP code ?
<?php
$a = 97;
switch(?$a)
{
case "a":
print "hi";
break;
case 97:
print "hello";
break;
default:
print "hi1";
}
?>
<?php
$a = 97;
switch(?$a)
{
case "a":
print "hi";
break;
case 97:
print "hello";
break;
default:
print "hi1";
}
?>A. hihellohi1
B. hi
C. hihello
D. hello
Answer: Option D

Join The Discussion