Examveda
Examveda

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: Option A

Solution(By Examveda Team)

Upcasting does happen in case,it compares it with 1.0 and thus prints hi and exits.

This Question Belongs to PHP >> Control Structures(Loop In PHP)

Join The Discussion

Related Questions on Control Structures(Loop in PHP)