Unit 8

Unit 8

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

Code.org Unit 8

Code.org Unit 8

10th - 12th Grade

12 Qs

CodeHS

CodeHS

10th - 12th Grade

12 Qs

CodeHS APCSP Python

CodeHS APCSP Python

10th - 12th Grade

12 Qs

คำศัพท์ภาษาไพทอน Test 10 ข้อ

คำศัพท์ภาษาไพทอน Test 10 ข้อ

9th - 12th Grade

10 Qs

python(strings)

python(strings)

11th Grade

10 Qs

Python Packing & Unpacking Review

Python Packing & Unpacking Review

9th - 12th Grade

7 Qs

List Basics

List Basics

9th - 12th Grade

10 Qs

Java Strings

Java Strings

9th - 12th Grade

12 Qs

Unit 8

Unit 8

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Julia McGreal

Used 7+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

Which of the following programs would produce the following output:

my_list = ["honey", "bread", "jelly", "plates"]

for index in range(len(my_list)): print(str(index) + ". " + my_list)

my_list = ["honey", "bread", "jelly", "plates"]

for index in range(len(my_list)): print(str(index+1) + ". " + my_list[index])

my_list = ["honey", "bread", "jelly", "plates"]

for index in my_list: print(str(index+1) + ". " + my_list[index])

my_list = ["honey", "bread", "jelly", "plates"]

for index in len(my_list): print(str(index) + ". " + my_list[index])

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What kind of data structure is user_data in the following declaration?

user_data = ["TJ", 24, "artLover123"]

Tuple

List

2D List

String

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following lines of code will cause an error? Use the following definition of ages:

ages = (12, 5, 8)

ages = ages + (1, 3, 5)

ages = ages + (1, 3, 5)

print(ages[2])

ages = ages[2:]

ages[0] = 3

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does this code snippet print?

fruit = ["b", "n", "n"]

print("a".join(fruit))

bnn

bnn

ba na na

banan

bbb

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of num after this code runs?

shapes = ["triangle", "square", "hexagon", "circle", "pentagon"]

num = len(shapes)

0

4

5

33

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What does this program print?

My favorite animal is a dog or penguin

My favorite animal is a penguin or chipmunk

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Media Image

What will be the output of the following program?

[1, 2, 3, 4, 5, 5, 5, 5]

[1, 2, 3, 4, 5]

[1, 2, 3, 4, 6, 7, 8, 9]

[1, 2, 3, 4, 5, 6, 7, 8]