Q. What will be the output of the following PHP code ?
Code:
<?php $p = 8; $r = 7; $q = 15; $s = $p + $r == $q; print $s; ?>
β
Correct Answer: (A)
15
<?php $p = 8; $r = 7; $q = 15; $s = $p + $r == $q; print $s; ?>
You must be Logged in to update hint/solution