Examveda
Examveda

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

Solution(By Examveda Team)

Print returns 1,thus it gives case 1.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)