1.

What will be the output of the following PHP code ?
<?php
$m = 10; $n = 11; $s = 12;
print !(($m + $s) < ($n - $s));
?>

A. Error
B. 1
C. Nothing
D. 0
E. None of these
Answer» C. Nothing


Discussion

No Comment Found

Related MCQs