Testing Fundamentals - Testing Models and Approaches
Given the code snippet:
What will be the output?
def select_approach(risk_level):
if risk_level > 7:
return 'risk-based'
else:
return 'exploratory'
print(select_approach(8))What will be the output?
