Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$a = 10;
if (0) 
    print "all";
 if 
 else 
     print "some"
?>

A. all

B. some

C. error

D. no output

Answer: Option C

Solution(By Examveda Team)

No else statement to end the if statement.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)