Python Strings

Python Strings

7th - 9th Grade

10 Qs

quiz-placeholder

Similar activities

Python - Y8 lesson 1

Python - Y8 lesson 1

8th Grade

12 Qs

Introduction to Python Turtle

Introduction to Python Turtle

7th - 8th Grade

10 Qs

Basic Python

Basic Python

6th - 8th Grade

15 Qs

Y9 Intro to Python

Y9 Intro to Python

8th Grade

10 Qs

GCSE Python Inputs, Outputs, Variables

GCSE Python Inputs, Outputs, Variables

9th Grade

15 Qs

9.2 Further programming

9.2 Further programming

9th Grade

12 Qs

Python for Class 7

Python for Class 7

7th - 8th Grade

11 Qs

Python

Python

7th - 8th Grade

13 Qs

Python Strings

Python Strings

Assessment

Quiz

Computers

7th - 9th Grade

Hard

Created by

Ben Redmond

Used 19+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name[2])

F

r

e

d

2.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name[1:3])

Fre

re

red

Fr

3.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name[1:])

Fre

re

red

Fr

4.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name[:3])

Fre

re

red

Fr

5.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name.upper())

Fred

fred

FRED

fRED

6.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name.lower())

Fred

fred

FRED

fRED

7.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

What will this line of code display in the shell window if name holds the value "Fred"?

print(name[0].lower())

f

F

fred

fRED

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?