QUESTION IMAGE
Question
question 13 4 pts given num = -10, what is the final value of num? if num < 0: num = 25 if num < 100: num = num + 50 75 40 -10
Step1: Check first condition
Since num = - 10 < 0, num is set to 25.
Step2: Check second condition
Now num = 25 < 100, so num = 25+50 = 75.
Snap & solve any problem in the app
Get step-by-step solutions on Sovi AI
Photo-based solutions with guided steps
Explore more problems and detailed explanations
75