Welcome to your Python Basic Quiz #9 - For Loop User Name Email 1. What will be the output of the below code? items = [1, -1, 3, 4, -5]valid = 0invalid = 0for i in items: if(i > 0): valid = valid + 1 else: invalid = invalid + 1else: print("Verified")print("Valid: " + str(valid))print("Invalid: " + str(invalid)) Verified Valid: 3 Invalid: 2 SyntaxError: invalid syntax Valid: 3 Invalid: 2 None 2. What will be the output of the below code? words = ["is", "was", "this", "that", "at"]for item in words: if(len(item) > 2): continue else: print(item) breakelse: print("as") isatas isas is None 3. What will be the output of the below code? for x in range(1, 5): print("*" * x) SyntaxError: invalid syntax **1**2**3**4 ********** None 4. What will be the output of the below code? words = ["is", "was", "this", "that", "at"]for item in words: if(len(item) > 2): continue else: print(item)else: print("as") thisthatat thisthatatas isatas None 5. What will be the output of the below code? for x in range(5): print(x) 12345 01234 1234 None Time's up