IT 116: Introduction to Scripting
Class 24 Ungraded Quiz

  1. If l1 is a list, what is l2 after the following statement is executed?
    l2 = l1



  2. Write a Python statement that creates a new list, l2, that has all the elements of the list l1 in the same order.


  3. Can a function that is given a list as a parameter and does not have a return statement change the list given as a parameter?


  4. If l1 and l2 are list variables, write a Python statement that creates the new list l3 that consists of all the elements in l1 followed by all the elements in l2.


  5. Write a loop that increases the value of all the integers in the list l1 by 2.