Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$y = 2;
$w = 4;
$y *= $w /= $y;
echo $y, $w;
?>

A. 80.5

B. 44

C. 82

D. 42

Answer: Option D

Solution(By Examveda Team)

Expression is evaluated from right to left.

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

Join The Discussion

Related Questions on Operators and Expressions in php