Examveda
Examveda

What will be the output of the following PHP code ?
<?php
one = 1;
two = 2;
three = 3;
four = 4;
echo "one / two + three / four";
?>

A. 0.75

B. 0.05

C. 1.25

D. Error

Answer: Option D

Solution(By Examveda Team)

Variables should start with a $ symbol, since one, two, three, four don’t begin with $ symbol we’ll get an error.

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

Join The Discussion

Related Questions on Operators and Expressions in php