Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$i = 0;
$j = 0;
if ($i &&  ($j = $i + 10)) 
{
    echo "true";
}
echo $j;
?>

A. 10

B. 0

C. true0

D. true10

Answer: Option B

Solution(By Examveda Team)

In if condition when the first case is 0 and is an && operation then the second command is not executed.

This Question Belongs to PHP >> Operators And Expressions In Php

Join The Discussion

Related Questions on Operators and Expressions in php