What will be the output of the following PHP code ?<br/>function A1($x) { switch($x) {<br/>case 1:<br/>//this statement is the same as <br/>if($x == 1)<br/>echo 'Case 1 was executed.';<br/>break;<br/>case 2:<br/>//this statement is the same as<br/>if($x == 2)<br/>echo 'Case 2 was executed.';<br/>break;<br/>case 3:<br/>//this statement is the same as<br/>if($x == 3)<br/>echo 'Case 3 was executed.';<br/>break;<br/>case 4:<br/>//this statement is the same as<br/>if($x == 4)<br/>echo 'Case 4 was executed.';<br/>break;<br/>default:<br/>//this statement is the same as if $x does not equal the other conditions<br/>echo 'Default was executed.';<br/>break;<br/>}<br/>}<br/>A1(9);

TRUE ANSWER : ?
YOUR ANSWER : ?