Cybersecurity - Incident Response
Consider this code snippet used in an incident report system:
What will be the output?
def notify_team(message, urgency):
if urgency == 'high':
channel = 'SMS'
else:
channel = 'Email'
return f"Notification sent via {channel}: {message}"
print(notify_team('Server down', 'high'))What will be the output?
