Q. What will be the output of the following PHP code?
Code:
<?php
$x = 100;
if ($x < 200){
echo "True";
}
else{
echo "False";
}
?>
β
Correct Answer: (A)
True