โœ•
โœ๏ธ Content byMd. Rakibul Islam
๐ŸŽฏ
MCQ
Multiple Choice ยท 121 questions
1Easydata typesโฑ 30s

What is the difference between a list and a tuple in Python?

โ–ผ
2Easylistsโฑ 30s

What does the following Python code output?

โ–ผ
python
a = [1, 2, 3, 4, 5]
print(a[1:3])
3Easysyntaxโฑ 20s

What does the 'pass' statement do in Python?

โ–ผ
4Easytypesโฑ 25s

What is the output of: print(type([]) == type([1, 2, 3]))?

โ–ผ
5Easybuilt-insโฑ 20s

Which Python built-in function returns the number of items in an object?

โ–ผ
6Easycomprehensionsโฑ 30s

What is a list comprehension in Python?

โ–ผ
python
squares = [x**2 for x in range(5)]
print(squares)
7Easyfunctionsโฑ 25s

How do you create a function in Python that accepts any number of positional arguments?

โ–ผ
8Easystringsโฑ 30s

What is the output of this code?

โ–ผ
python
name = 'Python'
version = 3.12
print(f'{name} {version:.1f}')
9Easyfunctionsโฑ 15s

Which keyword is used to define a function in Python?

โ–ผ
10Easybasic syntaxโฑ 15s

What is the correct file extension for Python files?

โ–ผ
11Easyvariablesโฑ 20s

Which of these is a valid variable name in Python?

โ–ผ
12Easydata typesโฑ 20s

What is the output of print(type(5))?

โ–ผ
python
print(type(5))
13Easydata typesโฑ 20s

What is the output of print(type(5.0))?

โ–ผ
python
print(type(5.0))
14Easydata typesโฑ 15s

What is the boolean type in Python called?

โ–ผ
15Easydata typesโฑ 20s

Which of the following creates an empty dictionary?

โ–ผ
16Easydata typesโฑ 25s

Which of the following creates an empty set (not a dictionary)?

โ–ผ
17Easydata typesโฑ 25s

What data type does the following code produce?

โ–ผ
python
s = {1, 2, 3}
print(type(s))
18Easyoperatorsโฑ 20s

What is the output of 10 // 3 in Python?

โ–ผ
python
print(10 // 3)
19Easyoperatorsโฑ 20s

What is the output of 10 % 3 in Python?

โ–ผ
python
print(10 % 3)
20Easyoperatorsโฑ 20s

What does the ** operator do in Python?

โ–ผ
python
print(2 ** 3)

Showing 1โ€“20 of 121 questions

Python MCQ Interview Questions โ€” All Levels | UyTech