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

Join The Discussion