Cybersecurity - Incident Response
Consider this simplified incident response code snippet:
What will be the output when this code runs?
def respond_to_incident(incident_detected):
if incident_detected:
print("Activate response team")
else:
print("Monitor systems")
respond_to_incident(True)What will be the output when this code runs?
