Unit 6 practice Lists, no loops

Unit 6 practice Lists, no loops

12th Grade

12 Qs

quiz-placeholder

Similar activities

Python Review KS3

Python Review KS3

9th - 12th Grade

17 Qs

Python Lists

Python Lists

8th - 12th Grade

15 Qs

Fundamentals of Python

Fundamentals of Python

9th - 12th Grade

13 Qs

CodeHS Fundamentals of CS Unit 8

CodeHS Fundamentals of CS Unit 8

10th - 12th Grade

12 Qs

APCSP CodeHS Python

APCSP CodeHS Python

10th - 12th Grade

12 Qs

Format String in Python

Format String in Python

12th Grade

17 Qs

T_(b)(C)_4.1 Introduction to Java Program

T_(b)(C)_4.1 Introduction to Java Program

12th Grade

10 Qs

CodeHS U8 L

CodeHS U8 L

10th - 12th Grade

12 Qs

Unit 6 practice Lists, no loops

Unit 6 practice Lists, no loops

Assessment

Quiz

Computers

12th Grade

Easy

Created by

Mrs. Mosier

Used 4+ times

FREE Resource

12 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

a = [3, 5, 1, 0, 2] b = ["a", "c", "x", "y"]

#1 What is the output of print( a[2])?

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

a[0] = a[1]

print(a)

Use square brackets and NO spaces.

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

b[3] = "w"

print(b)

Use square brackets and NO spaces, Use QUOTES

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

b.append("m")

print(b)

Use square brackets and NO spaces, Use QUOTES

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

a.pop(2)

print(a)

Use square brackets and NO spaces.

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

a.remove(0)

print(a)

Use square brackets and NO spaces.

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

val = b.index("c")

print(val)

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?