question 13 4 pts given num = -10, what is the final value of num? if num < 0: num = 25 if num < 100: num =…

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

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

Answer

Answer:

75

Explanation:

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.