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)) SyntaxError: invalid syntax Valid: 3 Invalid: 2 Verified 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)else: print("as") thisthatatas isatas thisthatat None 3. What will be the output of the below code? for x in range(5): print(x) 12345 01234 1234 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) breakelse: print("as") is isas isatas None 5. What will be the output of the below code? for x in range(1, 5): print("*" * x) **1**2**3**4 ********** SyntaxError: invalid syntax None Time's up