Which of the following is a Python loop control statement?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
break
Answer option 2
stop
Answer option 3
exit
English
What is the output of print(10 > 5)?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
True
Answer option 2
False
Answer option 3
None
English
Which of the following is a Python string method?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
upper()
Answer option 2
capitalize()
Answer option 3
titlecase()
Reference Link
English
What is the output of print(4 / 2)?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
2.0
Answer option 2
2
Answer option 3
2.00
Reference Link
English
Which of the following is a Python conditional statement?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
if
Answer option 2
when
Answer option 3
case
English
What is the output of print(3 == 3)?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
True
Answer option 2
False
Answer option 3
None
English
Which of the following is a Python list method?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
append()
Answer option 2
add()
Answer option 3
insert()
English
What is the output of print(len('Python'))?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
6
Answer option 2
7
Answer option 3
5
Reference Link
English
Which of the following is used to import a module in Python?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
import
Answer option 2
include
Answer option 3
require
Reference Link
English
What is the output of print('Hello' * 2)?
Anonymous (not verified)
Subject
Correct answer position
1
Answer option 1
HelloHello
Answer option 2
Hello2
Answer option 3
Hello Hello
Reference Link
English