Dear candidates you will find MCQ questions of Python here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
Share your questions by clicking Add Question
R
Q. What is the output of the following program :
i = 0 while i < 5: print(i) i += 1 if i == 3: break else: print(0)
R
Q. What is the output of the following program :
print 'cd'.partition('cd')
R
Q. What is the output of the following program :
print 'abcefd'.replace('cd', '12')
R
Q. What will be displayed by the following code?
def f(value, values): v = 1 values[0] = 44 t = 3 v = [1, 2, 3] f(t, v) print(t, v[0])
R
Q. Predict the output of following python programs
dictionary1 = {'Google' : 1, 'Facebook' : 2, 'Microsoft' : 3 } dictionary2 = {'GFG' : 1, 'Microsoft' : 2, 'Youtube' : 3 } dictionary1.update(dictionary2); for key, values in dictionary1.items(): print(key, values)
R
Q. What is the output of the following program?
dictionary1 = {'GFG' : 1, 'Google' : 2, 'GFG' : 3 } print(dictionary1['GFG']);
R
Q. What is the output of the following program?
temp = dict() temp['key1'] = {'key1' : 44, 'key2' : 566} temp['key2'] = [1, 2, 3, 4] for (key, values) in temp.items(): print(values, end = "")
R
Q. What is the output of the following program?
data = [2, 3, 9] temp = [[x for x in[data]] for x in range(3)] print (temp)
R
Q. What is the output of the following program?
data = [x for x in range(5)] temp = [x for x in range(7) if x in data and x%2==0] print(temp)
R
Q. What is the output of the following program?
L1 = [1, 2, 3, 4] L2 = L1 L3 = L1.copy() L4 = list(L1) L1[0] = [5] print(L1, L2, L3, L4
Don't have account? Register here.