<?php$4four = 4;$3three = 3;$2two = 2;echo $4four + $3three / $2two - 1;?>
<?php
$4four = 4;
$3three = 3;
$2two = 2;
echo $4four + $3three / $2two - 1;
?>
4.5
7
3.5
Error
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option D
Explanation :
A variable name can not start with a numeric value.
Be The First To Comment