Python Chapter 11 Review Crossword

12345678910111213141516
Across
  1. 1. What function finds the largest element in a sequence.
  2. 5. Strings and lists are _ types in Python.
  3. 7. This method returns the number of times element appears in the list.
  4. 8. This type of search compares the key with each element in the list, in which the elements can be in any order.
  5. 9. Another word for a table.
  6. 11. This occurs when accessing a list out of bounds.
  7. 12. The name of the method that organizes a list.
  8. 13. When a function returns a list, the list’s _ value is returned.
  9. 15. The best type of loop to iterate through a dimensional array/list.
  10. 16. Another word for a list structure.
Down
  1. 2. This method adds an element to the end of the list.
  2. 3. What function finds the smallest element in a sequence.
  3. 4. This method deletes the first occurrence of an element from the list.
  4. 6. This type of search requires elements have to be ascending order, in which it is time complexity is generally O(log n).
  5. 8. When comparing lists using comparison operators, it uses _ ordering, in which the first two elements are compared, and if they differ this determines the outcome of the comparison; if they are equal, the next two elements are compared, and so on, until either list is exhausted.
  6. 10. A two-dimensional list is considered a _ list.
  7. 14. Elements in a list are separated by _ and are enclosed by a pair of brackets.