1.

What will be the output of the following PHP code ?<?php$a = "1";switch($a){case 1:break;print "hi";case 2:print "hello";break;default:print "hi1";}?>

A. ihellohi1
B. o output
C. ihi1
D. i1
Answer» C. ihi1


Discussion

No Comment Found