Strings and numbers

Strings and numbers

11th Grade

15 Qs

quiz-placeholder

Similar activities

Python variables and Data types

Python variables and Data types

10th - 12th Grade

10 Qs

Multimedia Fundamentals

Multimedia Fundamentals

9th - 12th Grade

15 Qs

Excel 2016 Lesson 3 - Using Office Backstage

Excel 2016 Lesson 3 - Using Office Backstage

9th - 12th Grade

10 Qs

Python Arithmetic, Boolean, and Strings

Python Arithmetic, Boolean, and Strings

9th - 12th Grade

14 Qs

Python Basics Quiz

Python Basics Quiz

7th Grade - University

10 Qs

Boolean and If-Else Practice

Boolean and If-Else Practice

9th - 12th Grade

11 Qs

Unit 3 Python TEST

Unit 3 Python TEST

11th - 12th Grade

20 Qs

C# 101 Mid-Semester Review

C# 101 Mid-Semester Review

9th - 12th Grade

12 Qs

Strings and numbers

Strings and numbers

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Craig Ellis

Used 9+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

For strings, the + operator represents 
Concatenation
Addition
Appending
Recantation 

2.

MULTIPLE CHOICE QUESTION

1 min • 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

1 min • 1 pt

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

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

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

5.

MULTIPLE CHOICE QUESTION

1 min • 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

1 min • 1 pt

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

7.

MULTIPLE CHOICE QUESTION

1 min • 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?