What will be the output of the following PHP code?
<?php
$team = "arsenal";
switch ($team)
{
case "manu":
echo "I love man u";
case "arsenal":
echo "I love arsenal";
case "manc":
echo "I love manc";
}
?>
<?php
$team = "arsenal";
switch ($team)
{
case "manu":
echo "I love man u";
case "arsenal":
echo "I love arsenal";
case "manc":
echo "I love manc";
}
?>
A. I love arsenal
B. Error
C. I love arsenalI love manc
D. I love arsenalI love mancI love manu
Answer: Option C

In this question, you didn't mention default after end of case. so, whenever we try to execute this code we got first option which is correct but here displayed option C is correct .. so please correct this question. mention default otherwise set correct question.