Name:_______________________

A variable defined inside a function is referred to as _____. A. a block variable . B. a global variable . C. a function variable . D. a local variable . What is the printout of the following code? x = 1 def f1(): x = 2 print(x) f1() print(x) 2 1. What is wrong in the following code? class A: def. __init__(self, i): self.i = i. def ................
................