Rest API - API Testing and Monitoring
Given this monitoring script snippet:
What will be the output?
response_time = 3.5
if response_time > 2:
alert = True
else:
alert = False
print(alert)What will be the output?
