Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 3.5;
$y = 2;
$z = 2;
echo $x / $y / $z;
?>

A. 1.75

B. 0.875

C. 3.5

D. Error

Answer: Option B

Solution(By Examveda Team)

First $x / $y is evaluated then this is divided by $z therefore we get 0.875.

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

Join The Discussion

Related Questions on Operators and Expressions in php