1.
What is the output of the following Python code:
def f(values): values[1] = 12 v = [1, 2, 3] f(v) print(v)
2.
What is the output of the following Python code:
def f(values): values += 12 v = [1, 2, 3] f(v) print(v)
3.
What is the output of the following Python code:
myArr = [34, 3, 212, 121, 12]
min = myArr[0]
indexOfMin = 0
for z in range(1, len(myArr)):
    if myArr[z] < min:
    min = myArr[z]
indexOfMin = z

print(indexOfMin)
4.
What is the result of the following statement in Python:
'50' == 50
5.
What is the output of the following Python code:
list1 = [34, 24, 112, 25]
list2 = list1
del list1
print list2
6.
What is the output of the following Python code:
list1 = [34, 24, 112, 25]
list2 = list1
del list1
print list2
7.
What is the output of the following Python code:
list1 = [3, 23, 4, 5]
list2 = list1
list1.reverse()
print list2
8.
What is the output of the following Python code:
list1 = [3, 35, 5, 6, 3]
print list1.index(-1)
9.
What is the output of the following Python code:
print list("a$b$c$d$e".split('$'))
10.
What is the output of the following Python code:
names1 = ['Ravi', 'Rahul', 'Raghu']
if 'raghu' in names1: print 'Yes'
else :print 'No'