Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 10;
$y = 5;
$z = 3;
if ($x / $y / $z)
    print "hi";
else
    print "hello";
?>

A. hi

B. hello

C. error

D. no output

Answer: Option A

Solution(By Examveda Team)

In php division returns a float that is a non zero value thus evaluates to true.

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

Join The Discussion

Related Questions on Control Structures(Loop in PHP)