What will be the output of the following PHP code ?
<?php
$4four = 4;
$3three = 3;
$2two = 2;
echo $4four + $3three / $2two - 1;
?>
<?php
$4four = 4;
$3three = 3;
$2two = 2;
echo $4four + $3three / $2two - 1;
?>
A. 4.5
B. 7
C. 3.5
D. Error
Answer: Option D
Join The Discussion