Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question 13 4 pts given num = -10, what is the final value of num? if n…

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

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.

Answer:

75