Examveda
Examveda

What will be the output of the following PHP code ?
<?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

Solution(By Examveda Team)

A variable name can not start with a numeric value.

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

Join The Discussion

Related Questions on Operators and Expressions in php