Unit 6 practice Lists, no loops

Unit 6 practice Lists, no loops

12th Grade

12 Qs

quiz-placeholder

Similar activities

CodeHS U8 L

CodeHS U8 L

10th - 12th Grade

12 Qs

CO - 1 Quiz - 1-DB_Python Basic

CO - 1 Quiz - 1-DB_Python Basic

10th Grade - University

15 Qs

Java Arrays Basic

Java Arrays Basic

10th - 12th Grade

15 Qs

Python Lists

Python Lists

9th - 12th Grade

15 Qs

Quiz 142 - Python inputs and outputs

Quiz 142 - Python inputs and outputs

9th Grade - University

15 Qs

Javascript & Client side scripting

Javascript & Client side scripting

10th - 12th Grade

10 Qs

Semester Review

Semester Review

9th - 12th Grade

16 Qs

Format String in Python

Format String in Python

12th Grade

17 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?