PHP - Conditional Statements
What will be the output of this PHP code?
<?php
$score = 75;
if ($score >= 90) {
echo "Grade A";
} elseif ($score >= 80) {
echo "Grade B";
} elseif ($score >= 70) {
echo "Grade C";
} else {
echo "Grade F";
}
?>