Q. What will be the output of the following PHP code ?
Code:
<?php $m = 10; $n = 11; $s = 12; print !(($m + $s) < ($n - $s)); ?>
β
Correct Answer: (B)
1
<?php $m = 10; $n = 11; $s = 12; print !(($m + $s) < ($n - $s)); ?>
You must be Logged in to update hint/solution