What will be the output of the following code?
nameList = ['Саша', 'Джек', 'Кирилл', 'Борис']
pos = nameList.index("Джейкоп")
print (pos * 3)
'PYTHON _WORLD'
Quiz
•
Other
•
6th - 8th Grade
•
Hard
Джаврият Халикова
Used 2+ times
FREE Resource
12 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What will be the output of the following code?
nameList = ['Саша', 'Джек', 'Кирилл', 'Борис']
pos = nameList.index("Джейкоп")
print (pos * 3)
Джейк
Саша, Саша, Саша
KeyError
Ошибка значения
Борис * 3
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the output of the following code snippet?
d1 = [10, 20, 30, 40, 50]
d2 = [1, 2, 3, 4, 5]
subtracted = list(
for d1, d2 in zip(d1, d2):
item = d1 - d2
subtracted.append(item)
print(subtracted)
[10, 20, 30, 40, 50]
[1, 2, 3, 4, 5]
[10, 20, 30, 40, 50, -1, -2, -3, -4, -5]
9, 18, 27, 36, 45
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the output of the following code snippet?
data = [x for x in (x for x in 'Geeks 22966 for Geeks' if x.isdigit()) if
(x in ([x for x in range(20)]))]
print(data)
[2, 2, 9, 6, 6]
[ ]
Compilation Error
Runtime Error
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the outcome of the following code snippet?
A = {0, 2, 4, 6, 8}
B = {1, 2, 3, 4, 5};
print( A - B)
{0, 1, 2, 3, 4, 5, 6, 8}
{0, 8, 6}
{2, 4}
{0, 1, 3, 5, 6, 8}
5.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Can you guess the output of the following code snippet?
def REVERSE(L):
L.reverse()
return(L)
def ABCDEF(L):
List = []
List.extend(REVERSE(L))
print(List)
L = [1, 3.1, 5.31, 7.531]
ABCDEF(L)
Index Error
[1, 3.1, 5.31, 7.531]
Attribute Error: 'NoneType' object has no attribute 'REVERSE'
[7.531, 5.31, 3.1, 1]
6.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What will be the output of the following code snippet?
temp = ['Geeks', 'for', 'Geeks']
arr = [i[0].upper() for i in temp]
print(arr)
['GEEKS', 'FOR','GEEKS']
[‘G’, ‘F’, ‘G’]
Compilation Error
['GEEKS']
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Can you find the output of the following game?
numberGames = {}
numberGames[(1,2,4)] = 8
numberGames[(4,2,1)] = 10
numberGames[(1,2)] = 12
sum = 0
for k in numberGames:
sum += numberGames[k]
print (len(numberGames) + sum)
33
12
10
8
8 questions
6 сынып Питон сұрақтар
Quiz
•
6th Grade
8 questions
Алексин "А тем временем где-то..."
Quiz
•
7th Grade
14 questions
Python Basics Quiz
Quiz
•
8th Grade
10 questions
Advanced Python Quiz1
Quiz
•
6th - 8th Grade
10 questions
Списки. PYTHON
Quiz
•
3rd Grade - University
8 questions
Tribus urbanas
Quiz
•
7th Grade
14 questions
Intro to Python Programming Quiz 9D
Quiz
•
1st Grade - University
15 questions
That Spongebob Quiz
Quiz
•
2nd - 6th Grade
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade
20 questions
Final Exam Vocabulary
Quiz
•
6th Grade
17 questions
Parts of Speech
Quiz
•
7th - 12th Grade
11 questions
Decimal/fraction conversions quick check
Quiz
•
5th - 7th Grade
10 questions
Identifying equations
Quiz
•
KG - University
44 questions
El fin del año- 7th
Quiz
•
7th - 12th Grade
40 questions
Word Study Assessment: Roots, Prefixes, Suffixes, and Vocabulary
Quiz
•
8th Grade
49 questions
How Well Do You Know Your 6th Grade Teachers?
Quiz
•
6th Grade