1.

What will be the output of the following PHP code ?
<?php
$p = 12;
$q = 21;
$r = 13;
echo $p + $q - $r / ($r - $q);
?>

A. 12
B. 34
C. 21
D. 13
E. 34.625
Answer» F.


Discussion

No Comment Found

Related MCQs