Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$x = 10;
$y = 4;
$z = 3;
echo $x % $y % $z;
?>

A. 0

B. 1

C. 2

D. Error

Answer: Option C

Solution(By Examveda Team)

The expression is considered as ($x%$y)%z in this case (10%4)%3 which is 2.

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

Join The Discussion

Related Questions on Operators and Expressions in php