

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following PHP code ? <?php $b = 1; switch(print $b) { case 2: print "hello"; break; case 1: print "hi"; break; default: print "hi1"; } ?> |
A. | 1hello |
B. | 1hi |
C. | 1hi1 |
D. | Error |
Answer» C. 1hi1 | |