Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 30;
$y = 20;
$z = 10;
echo $x + $y - $z / ($z - $y);
?>

A. 41

B. -4

C. -5

D. 51

Answer: Option D

Solution(By Examveda Team)

First ($z – $y) is evalulated then -$z/($z – $y) is evaluated this results in 1 which is added to $x + $y therefore we get 51.

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

Join The Discussion

Related Questions on Operators and Expressions in php