Q3Multiple correct3 Marks13 Apr 2025
Consider the following code snippet:
Which of the following statements is/are correct?
```
temperature = int(input())
alert = False
if temperature > 35:
alert = True
if temperature > 45:
status = '''Extreme Heat'''
else:
status = '''High Temperature'''
elif temperature >= 20:
if temperature > 25 and alert:
status = '''Moderate'''
else:
status = '''Pleasant'''
print(status)
```