reassignment {Ans: Making more than one assignment to the same variable during the execution of a program.}loop variable {Ans: A variable used as part of a for loop. It is assigned a different value on each iteration of the loop, and is used as part of the terminating condition of the loop}strings-3-2: What is printed by the following statements? s = "python" excl = "!" print(s+excl*3) (A) python!!! (B) python!python!python! (C) pythonpythonpython! (D) Error, you cannot perform concatenation and repetition at the same time. {Ans: A}select-8-2: Is the following statement legal in Python (assuming x, y and z are defined to be numbers)? return x + y < z (A) Yes (B) No {Ans: A}intro-4-2: Codelens allows you to (select all that apply): (A) measure the speed of a program's execution. (B) control the step by step execution of a program. (C) write and execute your own Python code. (D) execute the Python code that is in codelens. {Ans: B,C,D}sequential {Ans: The default behavior of a program. Step by step processing of algorithm.}strings-5-1: What is printed by the following statements? s = "python rocks" print(s.count("o") + s.count("p")) (A) 0 (B) 2 (C) 3