What is the output of the following code? seenagape 10 years ago What is the output of the following code? $a = 3; switch ($a) { case 1: echo ‘one’; break;case 2: echo ‘two’; break; default: echo ‘four’; break; case 3: echo ‘three’; break; } A. three B. four C. two D. one Explanation: ← Previous question Next question →