Please enable JavaScript to use CodeHS

Utah Introduction to Python 1 and 2

Lesson 11.7 Lists Quiz

Description

In this lesson, students review content with a 10 question End-of-Unit Quiz.


Objective

Students will be able to:

  • Prove their knowledge of the following commands and concepts through a multiple choice quiz:
    • Creating lists (list_name = [item_1, item_2, ...])
    • Index values
    • Accessing list items (list_name[index])
    • Updating list items (list_name[index] = new_value)
    • Adding list items using:
      • append
      • extend
      • insert
      • +
    • Removing list items using:
      • pop
      • remove
      • del
    • Using additional list methods:
      • sort
      • reverse

Activities

These are all the activities included in the lesson

11.7.1 Lists Quiz