1.

What will be the output of the following PHP code ?
<?php
$r = 8;
$s = -6;
$t = 22;
echo 8 + $s * $t / $r;
?>

A. 8
B. -6
C. -8.5
D. 11
E. None of these
Answer» D. 11


Discussion

No Comment Found

Related MCQs