Question 1: Python Lists - Creation
Which of the following is a valid way to create a list?
Question 2: Python Tuples - Immutability
What happens when you execute the following?
Question 3: Python Lists - Indexing
What will this code output?
Question 4: Python Lists - Negative Index
What does lst[-1] return?
Question 5: Python Lists - Append Method
What is the output?
Question 6: Python Tuples - Single Element
Which of the following correctly creates a tuple with a single element 5?
Question 7: Python Lists - Slicing
What will this code output?
Question 8: Python Lists - Nested Lists
What is the output?
Question 9: Python Tuples - Concatenation
What will this code print?
Question 10: Python Lists - Length
What is the output?