Python Quiz 1

PYTHON QUIZ 1

CONGRATULATIONS! YOU HAVE COMPLETED PYTHON QUIZ 1. YOU HAVE %%SCORE%% TRUE ANSWERS OUT OF %%TOTAL%% QUESTIONS. YOUR SCORE IS %%PERCENTAGE%%. %%RATING%%
Your answers are highlighted below.
Question 1
What is the output of this python code and python function?
numbers1 = {10,1,20,2,3}
numbers2 = {1,2,3,4}
print(numbers1.issuperset(numbers2))
A
{1,2,3,4}
B
False
C
None of them
D
True
E
{10,1,20,2,3}
Question 2
What is the result of this python code?
numbers1 = {3,4,5}
numbers2 = {12,17,56,80,92}
print(numbers1.isdisjoint(numbers2))
A
True
B
0
C
{12,17,56,80,92}
D
{3,4,5}
E
False
Question 3
How to access "bear" item in list x? 
x= ["eagle","bear","wolf"]
A
x[2]
B
x[0]
C
x[-2]
D
x[-1]
E
x[1]
Question 4
What is the output of this python code?
list1 = []
for x in range(1,10,1):
	list1.append(x-2)
print(list1)
A
[1, 2, 3, 4, 5, 6, 7]
B
[-1, 0, 1, 2, 3, 4, 5, 6, 7]
C
[0, 1, 2, 3, 4, 5, 6, 7, 8]
D
[-1, 1, 2, 3, 4, 5, 6, 7]
E
[0, 2, 4, 6]
Question 5
Which commands combine the items of list x with "dash" between each item?
A
"-".join(x)
B
join("-")
C
none of them
D
join(-)
E
-.join(x)
Question 6
How can we access to "g" letter in the below list?
list = [10, [‘aa’, ‘bb’, [‘life’, ‘is’, ‘good’], ‘cc’], 33]
A
list[1][1][2][0]
B
list[1][2][1][1]
C
list[1][2][2][1]
D
list[0][2][2][0]
E
list[1][2][2][0]
Question 7
Which python method deletes all the items in a set?
A
clear()
B
empty()
C
delete()
D
del()
E
remove()
Question 8
Which python regular expression is WRONG?
A
^ - Matches beginning of line.
B
\w - Matches word characters.
C
[...] - Matches any single character in brackets.
D
$ - Matches end of line.
E
\d - Matches strings.
Question 9
How to access "eagle", "bear" and "wolf" items in list x? x= ["eagle","bear","wolf", "lion", "tiger"]
A
x[:3]
B
x[1:3]
C
x[-1:-3]
D
x[3:]
E
x[:2]
Question 10
With which python method we convert the letters of a string to upper case?
A
down()
B
upper()
C
lower()
D
up()
E
convert()
Question 11
To compare two values in python, we use ... operator.
A
&
B
//
C
==
D
%
E
||
Question 12
Which one is a python set?
A
("eagle","bear","wolf")
B
{"eagle","bear","wolf"}
C
(["eagle","bear","wolf"])
D
["eagle","bear","wolf"]
E
"eagle","bear","wolf"
Question 13
If the output of the below code is "I like dogs.", the method used in the blank part will be ...
txt = "I like cats."
x = txt.--?--("cats", "dogs")
print(x)
A
join
B
replace
C
strip
D
index
E
split
Question 14
Which method is used to get list of dictionary keys?
A
none of them
B
dict.values()
C
dict.values()
D
dict.keys()
E
dict.items()
Question 15
How to print "I love Python!" with a python code?
A
print(I love Python!)
B
print(I love Python!):
C
print("I love Python!")
D
print "I love Python!"
E
all of them
Question 16
How to add "This is x code" comment in a python code?
A
#This is x code
B
*This is x code
C
-This is x code
D
//This is x code
E
/This is x code
Question 17
What is the Output of This Python Code?
list = [ "Aragorn", "Arwen", "Gimli"]
x=len(list)
num = [10,15,22,10]
y=num.count(10)
z=x*y
print(z)
 
A
4
B
8
C
12
D
2
E
6
Question 18
If the output of the below python code is [5, 10, 15, 20, 25], what is the missing part?
list=[]
for x in range( --?-- ):
	list.append(x)
print(list)
A
5, 30, 5
B
0, 25, 10
C
0, 30, 2
D
0, 30, 10
E
5, 20, 5
Question 19
How many stars does this program prints?
i=7
while i>0:
  i-=3
  print("*")
  if i<=2:
    break
  else:
    print("*")
A
2
B
0
C
1
D
4
E
3
Question 20
Which one can Not be a Python Variable Name?
A
count5
B
20count
C
none of them
D
_Count
E
Count
Once you are finished, click the button below. Any items you have not completed will be marked incorrect. Get Results
There are 20 questions to complete.