Examveda
Examveda

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

A. all

B. some

C. error

D. no output

Answer: Option A

Solution(By Examveda Team)

The value of a is evaluated to 1 as it has a value.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)