Program Development - Python: Strings

Program Development - Python: Strings

9th - 10th Grade

25 Qs

quiz-placeholder

Similar activities

CodeHS - Intro to Python - Basics and Console Interaction

CodeHS - Intro to Python - Basics and Console Interaction

9th Grade - Professional Development

20 Qs

Python outputs

Python outputs

7th - 11th Grade

20 Qs

Year 10s quiz

Year 10s quiz

9th Grade

20 Qs

Python Unit 3 Review

Python Unit 3 Review

9th Grade

20 Qs

APCSP Semester Review

APCSP Semester Review

8th - 9th Grade

20 Qs

Review String

Review String

9th - 12th Grade

21 Qs

AP Final Review

AP Final Review

9th - 12th Grade

21 Qs

Python - lists,loops,basics

Python - lists,loops,basics

9th - 11th Grade

20 Qs

Program Development - Python: Strings

Program Development - Python: Strings

Assessment

Quiz

Computers

9th - 10th Grade

Hard

Used 67+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

For strings, the + operator represents 
Concatenation
Addition
Appending
Recantation 

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is printed by the following statements?
s = "programming rocks"
print(len(s))
12
17
16
nothing - there is an error

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is printed by the following statements?
cheer = "Go Eagles!"
print(cheer[0:1])
G
"Go"
Go
o

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is printed by the following statements?
cheer = "Go Eagles!"
print(cheer[5:8])
gle
agle
gles
agles

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is printed by the following statements?
ss = "Hola, friend"
print(ss.upper())
hola, friend
Hola, Friend
HOLA, FRIEND
Hola, friend

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is printed by the following statements?
s = "python rocks"
print(s[-3])
c
k
s
Error

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is printed by the following statements?
s = "python rocks"
print(s[1] * s.index("n"))
Error
55555
n
yyyyy

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?