Q. What will be the output of the following PHP code?
Code:
<?php
$car = "Honda";
switch ($car) {
case "Honda":
echo "You selected Honda.";
case "BMW":
echo "You selected BMW.";
case "AUDI":
echo "You selected Audi.";
default:
echo "None is selected.";
}
?>