Quiz Question 1 of 5
What will be displayed in a browser when the following PHP code is executed:
$num = 20;
if ($num >= 5) {
if ($num < 20) {
echo 'Range Met';
} else {
echo 'TOO MUCH!';
}
echo 'Keep Trying';
}
Choose the correct answer below: