
Python Quiz 6 on string manipulations by RK

Quiz
•
Computers
•
11th Grade
•
Medium
Reshma Kamthe
Used 5+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
s = 'foo'
t = 'bar'
print('barf' in 2 * (s + t))
What is the output of the print() function call?
True
False
2.
FILL IN THE BLANK QUESTION
1 min • 1 pt
What is the slice expression that gives every third character of string s, starting with the last character and proceeding backward to the first?
3.
FILL IN THE BLANK QUESTION
1 min • 1 pt
What will be the output of the following code?
5<5 or 10
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
What is the output of the following list operation
aList = [10, 20, 30, 40, 50, 60, 70, 80]
print(aList[2:5])
print(aList[:4])
print(aList[3:])
[20, 30, 40, 50]
[10, 20, 30, 40]
[30, 40, 50, 60, 70, 80]
[30, 40, 50]
[10, 20, 30, 40]
[40, 50, 60, 70, 80]
None of these
5.
MULTIPLE SELECT QUESTION
30 sec • 1 pt
Select all the correct options to join two lists in Python
listOne = ['a', 'b', 'c', 'd']
listTwo = ['e', 'f', 'g']
newList = listOne + listTwo
newList = extend(listOne, listTwo)
newList = listOne.extend(listTwo)
newList.extend(listOne, listTwo)
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following
aList = [5, 10, 15, 25]
print(aList[::-2])
[15, 10, 5]
[10, 5]
[25, 10]
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the output of the following list function?
sampleList = [10, 20, 30, 40, 50]
sampleList.append(60)
print(sampleList)
sampleList.append(60)
print(sampleList)
[10, 20, 30, 40, 50, 60]
[10, 20, 30, 40, 50, 60, 60]
[10, 20, 30, 40, 50, 60]
[10, 20, 30, 40, 50, 60]
both are wrong
Create a free account and access millions of resources
Similar Resources on Wayground
20 questions
Lists - Built in Functions

Quiz
•
11th Grade
20 questions
Python list, if

Quiz
•
6th - 12th Grade
18 questions
Quiz Ôn tập

Quiz
•
7th Grade - University
18 questions
CS1 Unit 8 Review

Quiz
•
9th - 12th Grade
18 questions
Final Test Python Code

Quiz
•
9th - 12th Grade
15 questions
Python Arrays Quiz P7

Quiz
•
11th Grade
18 questions
Lists

Quiz
•
10th - 12th Grade
16 questions
Chủ đề F.List data type in python

Quiz
•
11th Grade - University
Popular Resources on Wayground
50 questions
Trivia 7/25

Quiz
•
12th Grade
11 questions
Standard Response Protocol

Quiz
•
6th - 8th Grade
11 questions
Negative Exponents

Quiz
•
7th - 8th Grade
12 questions
Exponent Expressions

Quiz
•
6th Grade
4 questions
Exit Ticket 7/29

Quiz
•
8th Grade
20 questions
Subject-Verb Agreement

Quiz
•
9th Grade
20 questions
One Step Equations All Operations

Quiz
•
6th - 7th Grade
18 questions
"A Quilt of a Country"

Quiz
•
9th Grade