Examveda
Examveda

What will be the output of the following PHP code ?
<?php
$On_e = 1;
$tw_o = 2;
$thre_e = 3;
$fou_r = 4;
echo $on_e / $tw_o + $thre_e / $fou_r;
?>

A. 0.75

B. 0.05

C. 1.25

D. Error

Answer: Option A

Solution(By Examveda Team)

Since the variable initialised is $On_e and the variable in the echo statement is $on_e the echo statement treats $on_e as 0;

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

Join The Discussion

Related Questions on Operators and Expressions in php