1.

What will be the output of the following PHP code ?
<?php
switch($t)
{
case 2:
print "Interview";
break;
case 1:
print "Mania";
break;
}
?>

A. Error
B. Interview
C. Interview Mania
D. Mania
E. None of these
Answer» B. Interview


Discussion

No Comment Found

Related MCQs