Welcome to your Python Basic Quiz #9 - For Loop User Name Email 1. 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") isas isatas is None 2. 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 Verified Valid: 3 Invalid: 2 Valid: 3 Invalid: 2 None 3. What will be the output of the below code? for x in range(5): print(x) 01234 1234 12345 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 isatas thisthatatas None 5. 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 Time's up