41. What will be the output of the following PHP code ?
<?php
switch($b)
{
case 2:
print "hello";
break;
case 1:
print "hi";
break;
}
?>
<?php
switch($b)
{
case 2:
print "hello";
break;
case 1:
print "hi";
break;
}
?>