1.

What will be the output of the following PHP code ?
<?php
var $five = 5;
var $six = 6;
echo $five / $six * $five / $six * $six;
?>

A. Nothing
B. Error
C. 5
D. 0.25
E. None of these
Answer» C. 5


Discussion

No Comment Found

Related MCQs