1.

What will be the output of the following PHP code ?
<?php
$a = 23;
$b = 15;
$c = 25;
echo $a + $b - $c / ($c - $b);
?>

A. 35.5
B. 23
C. 15
D. 25
E. None of these
Answer» B. 23


Discussion

No Comment Found

Related MCQs