1.

What will be the output of the following PHP code ?
<?php
$p = 8; $r = 7; $q = 15;
$s = $p + $r == $q;
print $s;
?>

A. 15
B. 1
C. 8
D. 7
E. None of these
Answer» B. 1


Discussion

No Comment Found

Related MCQs