What is a correct syntax to output "Hello World" in Python??
Anonymous Quiz
94%
print("Hello World")
3%
p("Hello World")
2%
echo "Hello World"
1%
echo("Hello World")
👍1
What is output of following −
print("any".encode())
print("any".encode())
Anonymous Quiz
56%
‘any’
15%
‘yan’
24%
b’any’
6%
x’any’
What is the output of the following code?
print(type([1,2]))
print(type([1,2]))
Anonymous Quiz
16%
<class 'tuple'>
10%
<class 'int'>
6%
<class 'set'>
3%
<class 'complex'>
64%
<class 'list'>
👍2
Which of the following codes raises an exception?
Anonymous Quiz
23%
# test
47%
a = {1, 2, \ #comment 3, 4}
30%
a = {1, 2, #comment 3, 4}
Which function could be used to list every file and folder in the current directory?
Anonymous Quiz
12%
os.dirnames(‘.’)
40%
os.listdir(‘.’)
30%
os.listdir(‘/’)
18%
os.ls()
👍1
What function do you use to read a string?
Anonymous Quiz
63%
input(«Enter a string»)
15%
eval(input(«Enter a string»))
6%
enter(«Enter a string»)
16%
print(enter(«Enter a string»))
How to check whether an object x is an instance of class A?
Anonymous Quiz
40%
x.instance(A)
19%
A.instance(x)
32%
isinstance(x, A)
8%
isinstance(A, x)
👍1
In Python, what is the default maximum level of recursion?
Anonymous Quiz
7%
500
17%
1000
15%
10000
61%
There is no default maximum level
Which code snippet below will not return True?
Anonymous Quiz
13%
1 in [1,0]
26%
1 in [1,0] == True
47%
(1 in [1,0]) == True
13%
1 in [1, 2, 3]
