1| [fill in this blank] 2| while i < 10: 3| i += 4 4| print(...

1| 2| while i < 10: 3| i += 4 4| print(i)   The code segment above defines a while loop. In the blank below, enter text that could replace so that the code prints as follows: -315913 Do not use spaces in your answer. (The autograder may accept some combinations of spaces, but not all, so to be safe, just avoid using them.)

1| [fill in blank]2| if minutes_remaining > 90: 3| print(“Wa…

1| 2| if minutes_remaining > 90: 3| print(“Watch a movie!”) 4| elif minutes_remaining > 45: 5| print(“Watch a TV episode!”) 6| elif minutes_remaining > 20: 7| print(“Watch YouTube!”)   Choose the code that when put into line 1 would result in “Watch a TV episode!” being printed.

The following code segment is used for both parts 5 and 6. 1…

The following code segment is used for both parts 5 and 6. 1| if subscription == “Premium” and hd_available:2|     print(“You’ve been upgraded to HD!”)3| elif (subscription == “Premium” or subscription == “Standard”) and sd_available:4|     print(“You’ve been upgraded to SD!”)5| else:6|     print(“You’re on the basic plan.”)   Which of the following values for subscription, hd_available, and sd_available would result in “You’ve been upgraded to SD!” being printed?

Consider the following segment of code: 1| try: 2| print(“S…

Consider the following segment of code: 1| try: 2| print(“Starting.”) 3| result = a + b 4| print(“Success.”) 5| except: 6| print(“Error.”) 7| else: 8| print(“Else.”) 9| finally: 10| print(“Finally.”) For following set of values for a and b, select all the statements that will be printed. a = “Number: “, b = 5