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