No student devices needed. Know more
10 questions
What is latest python version?
Python 4.9.0
Python 3.9.0
Python 4.8.0
Python 3.7.5
Which of the following web frameworks are used in python?
A - Flask
B - Django
C - Bottle
D - Symfony
A, B
A, B, D
B, C, A
B, A, C, D
How would you express the hexadecimal value a5 as a base-16 integer constant in Python?
0xa5
16x5a
5ax16
A5x0
Consider this statement:
>>> print(r'foo\\bar\nbaz')
Which of the following is the correct REPL output?
foo\bar\nbaz
foo\\barnbaz
foo\\bar\nbaz
Foo\bar
baz
Which of the following is not a Python built-in function?
diff()
map()
isinstance()
repr()
What is the result of this statement?
print(ord('foo'))
324
It raises an exception
102
102 111 111
What is the result of this statement?
print(ord('f'))
324
It raises an exception
102
102 111 111
Suppose s is assigned as follows:
s = 'foobar'
All of the following expressions produce the same result except one. Which one?
s[::5]
s[::-1][::-5]
s[0] + s[-1]
s[::-5]
Predict the Output of the given code snippet:
0
1
2
Throws an exception
Predict the output of the following code snippet:
John
20
21
Throws an exception
Explore all questions with a free account