A
Q. What will be the output of the following PHP code ?
Code:
<?php
$n = 0;
if ($n == 1)
if ($n >= 0)
print "True";
else
print "False";
?>
$n = 0;
if ($n == 1)
if ($n >= 0)
print "True";
else
print "False";
?>
- Correct Answer - Option(D)
- Views: 22
- Filed under category PHP
- Hashtags:
Discusssion
Login to discuss.