PHP - Conditional Statements
Consider the following PHP code:
What will be the output?
$marks = 85;
if ($marks > 90) {
echo 'Excellent';
} elseif ($marks > 80) {
echo 'Very Good';
} elseif ($marks > 70) {
echo 'Good';
} else {
echo 'Needs Improvement';
}
What will be the output?
