Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$b = 1; $c = 4; $a = 5; 
$d = $b + $c == $a;
print $d;
?>

A. 5

B. 0

C. 10

D. 1

Answer: Option D

Solution(By Examveda Team)

First b and c are added and then tested if d=5,which is true thus return 1.

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

Join The Discussion

Related Questions on Operators and Expressions in php