Q. What will be the output of the following PHP code?
Code:
<?php
$a = 15;
$b = 20;
if ($a < ++$a || $b < ++$b){
echo "True";
}
else{
echo "False";
}
?>
β
Correct Answer: (B)
False