What is a defining feature of lists in Python that distinguishes them from strings?
What is the purpose of the repetition operator (*) in Python when applied to a list?
Which built-in function in Python would you use to find the number of occurrences of a specific element in a list?
What happens when you assign one list to another in Python without copying it?
Which method can be used to create a copy of a list in Python by taking a slice of the entire list?
What is the primary function of the `copy()` method from the `copy` library in Python?
What is the primary function of the user-defined function described in the programming exercise?
What characteristic of lists in Python allows for changes to be made after their creation?
What will occur if you attempt to concatenate a list and a string in Python?
How do the membership operators 'in' and 'not in' function in Python?
Which of the following methods can be used to traverse a list in Python?
What does the method `list.sort()` do when applied to a list in Python?
How would you access the second element of a nested list that is the fifth element of a main list?
Which method can be used to create a distinct copy of a list in Python?
What is the purpose of the built-in list() function in Python when copying a list?