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