Python Chapter 11 Review Crossword
Across
- 1. What function finds the largest element in a sequence.
- 5. Strings and lists are _ types in Python.
- 7. This method returns the number of times element appears in the list.
- 8. This type of search compares the key with each element in the list, in which the elements can be in any order.
- 9. Another word for a table.
- 11. This occurs when accessing a list out of bounds.
- 12. The name of the method that organizes a list.
- 13. When a function returns a list, the list’s _ value is returned.
- 15. The best type of loop to iterate through a dimensional array/list.
- 16. Another word for a list structure.
Down
- 2. This method adds an element to the end of the list.
- 3. What function finds the smallest element in a sequence.
- 4. This method deletes the first occurrence of an element from the list.
- 6. This type of search requires elements have to be ascending order, in which it is time complexity is generally O(log n).
- 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.
- 10. A two-dimensional list is considered a _ list.
- 14. Elements in a list are separated by _ and are enclosed by a pair of brackets.