Examveda
Examveda

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

A. $z

B. 15

C. 8

D. 1

Answer: Option C

Solution(By Examveda Team)

Normal addition of variables x, y and z occurs and result of 8 will be displayed.

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

Join The Discussion

Related Questions on Operators and Expressions in php