Python - Slicing Strings - 2

Python - Slicing Strings - 2

12th Grade

10 Qs

quiz-placeholder

Similar activities

M3ng3n4l B4h4s4 P3mr0gr4m4n Pyth0n

M3ng3n4l B4h4s4 P3mr0gr4m4n Pyth0n

12th Grade

14 Qs

String Methods Review

String Methods Review

9th Grade - University

10 Qs

Python Lesson 1

Python Lesson 1

5th Grade - University

7 Qs

Intro to Python Programming Quiz 9B

Intro to Python Programming Quiz 9B

10th Grade - University

14 Qs

Introductory Quiz

Introductory Quiz

9th - 12th Grade

10 Qs

Intro to Python Programming Quiz 9C

Intro to Python Programming Quiz 9C

10th Grade - University

12 Qs

python

python

3rd Grade - University

12 Qs

Python String formatting

Python String formatting

12th Grade

10 Qs

Python - Slicing Strings - 2

Python - Slicing Strings - 2

Assessment

Quiz

Other

12th Grade

Medium

Created by

Amy Austin

Used 9+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does slicing a string in Python allow you to do?

Return a range of characters by using the slice syntax.

Delete characters from a string.

Convert a string into an integer.

Encrypt the string.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way to get the characters from position 2 to position 5 in a string named 'b'?

b.slice(2,5)

b(2:5)

b[2,5]

b[2:5]

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you get the characters from the start to position 5 in a string?

Leave out the start index in the slice syntax.

Specify the start index as 0.

Use a negative start index.

Use the slice method with only the end index.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does using a negative index in string slicing allow you to do?

Skip certain characters.

Reverse the string.

Create a copy of the string.

Start the slice from the end of the string.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To get the characters from position 2 to the end of the string, you would:

Use a negative end index.

Leave out the end index in the slice syntax.

Specify both start and end indexes as 2.

Use a slice with the start index only.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of slicing the string 'Hello, World!' with the slice [-5:-2]?

'World'

'o, W'

'orl'

'llo, Wo'

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a valid string method in Python?

format()

slice()

replace()

lower()

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?