Python MCQ Questions Set-11

Here is an interesting Python Multiple choice questions Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. 1. What will be the output of the following Python code? count={}count[(1,2,4)] = 5count[(4,2,1)] = 7count[(1,2)] = 6count[(4,2,1)] = 2 tot = 0 for i in count:tot=tot+count[i] print(len(count)+tot) a) 25b) 17c) 16d) Tuples can’t … Read more

DBMS MCQ Questions and Answer Set-13

1.  The EXISTS keyword will be true if: Any row in the subquery meets the condition only All rows in the subquery fail the condition only Both of these two conditions are met Neither of these two conditions is met Explanation: EXISTS keyword checks for existance of a condition. 2. How many tables may be … Read more

Python MCQ Questions Set-10

Here is an interesting Python Multiple choice questions Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. A. What will be the output of the following Python function? re.findall(“hello world”, “hello”, 1) [“hello”] [ ] hello hello world B. Which of the following functions results in a case insensitive matching? re.A … Read more

Python MCQ Questions Set-9

Here is an interesting Python Multiple choice questions Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. 1.What will be the output of the following Python code? def mk(x):def mk1():print(“Decorated”)x()return mk1def mk2():print(“Ordinary”)p = mk(mk2)p() a)DecoratedDecoratedb)OrdinaryOrdinaryc)OrdinaryDecoratedd)DecoratedOrdinary 2. What will be the output of the following Python code? def ordi():print(“Ordinary”)ordiordi()a)Ordinaryb)Error 3. What will … Read more

Python MCQ Questions Set-8

Here is an interesting Python Multiple choice questions Quiz. Attempting this MCQ will help you to evaluate your knowledge and skills. Assume that there is a file ‘somefile.txt’ with the given contents.Contents of somefile.txt:This is first line.This is second line.This is third line. What will be the output of the following code?file = open(“somefile.txt”, “r”)content1 … Read more