<?php$b = 1; $c = 4; $a = 5; $d = $b + $c == $a;print $d;?>
<?php
$b = 1; $c = 4; $a = 5;
$d = $b + $c == $a;
print $d;
?>
5
0
10
1
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
First b and c are added and then tested if d=5,which is true thus return 1.
Be The First To Comment