PHP - Conditional Statements
What will be the output of the following PHP code?
<?php
$temperature = 65;
if ($temperature >= 80) {
echo "Hot";
} elseif ($temperature >= 60) {
echo "Warm";
} elseif ($temperature >= 40) {
echo "Cool";
} else {
echo "Cold";
}
?>