Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 10;
$y = 20;
if ($x > $y && 1||1)
    print "hi" ;
else
    print "how are u";
?>

A. how are u

B. hi

C. error

D. no output

Answer: Option B

Solution(By Examveda Team)

Expression evaluates to true.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)