Search Header Logo

CodeHS Python Unit 7 Quiz Review

Authored by Katy Fleming

Computers

9th - 12th Grade

Used 58+ times

CodeHS Python Unit 7 Quiz Review
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What is printed out by this program?

word = "killer whale"

print(word[0:100])

killer whal

“killer whale “

killer whale

The program will throw an error

2.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Media Image

What does this function do?

  1. Returns the same sentence, but replaces every space with the letter char

Returns the same sentence, but adds the letter char after every space

Returns the same sentence, but adds the letter char after every letter in the sentence, except for spaces

Returns the same sentence, but adds the letter char after every letter in the sentence

3.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following expressions will print “dog”?

Let sentence = "lazy dog"

print(sentence[6:])

print(sentence[:])

print(sentence[:5])

print(sentence[5:])

4.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following expressions will print “L”?

Let word = "PINEAPPLE"

print(word[-4:])

print(word[-1])

print(word[-2])

print(word[-3])

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

On which line does this program throw an error?

1 word = "killer whale"

2 pos = word.find(" ")

3 word = word + "!"

4 word[pos] = "-"

Line 1

Line 2

Line 3

Line 4

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following expressions will get the last character in a string? Assume that word is a string variable.

I. word[0]

II. word[-1]

III. word[len(word)]

IV. word[len(word)-1]

I, II, III

II, IV

II, III, IV

I, IV

7.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following if statements checks if the string variable sentence contains the word “the”?

if "t" or "h" or "e" in sentence:

print("Contains 'the'")

if "the" in sentence:

print("Contains 'the'")

if "the" == sentence:

print("Contains 'the'")

if sentence in "the":

print("Contains 'the'")

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?