Q. What will be the value of ‘n’ and ‘n1’ after execution of following code:
Code:
n1=10
for n in range(10, 12):
n1=n ** 2
n1=n1-10
β
Correct Answer: (C)
11 and 111