A
Q. What will be the output of the following PHP code ?
Code:
<?php
$m = 10; $n = 11; $s = 12;
print !(($m + $s) < ($n - $s));
?>
$m = 10; $n = 11; $s = 12;
print !(($m + $s) < ($n - $s));
?>
- Correct Answer - Option(B)
- Views: 13
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.