1. What is the output of the below program due to line 7?
x = 50
def func(x):
     print('x is', x)
     x = 2
     print('Changed local x to', x)
func(x)
print('x is now', x)

Next Page »