<?php$x = 3.5;$y = 2;$z = 2;echo $x / $y / $z;?>
<?php
$x = 3.5;
$y = 2;
$z = 2;
echo $x / $y / $z;
?>
1.75
0.875
3.5
Error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
First $x / $y is evaluated then this is divided by $z therefore we get 0.875.
Be The First To Comment