1.

What will be the output of the following PHP code ?
<?php
$n1 = 7.5;
$n2 = 4;
$n3 = 4;
echo $n1 / $n2 / $n3;
?>

A. 0.46875
B. 7.5
C. 4
D. 0
E. None of these
Answer» B. 7.5


Discussion

No Comment Found

Related MCQs