How many elements will the list2 list contain after execution of the following snippet?
list1 = [False for i in range (1, 10) ]
list2 = list1 [-1:1:-1]
What is the expected behavior of the following code?

If you want to transform a string into a list of words, what invocation would you use? (Select two answers)
Expected output:

Which of the listed actions can be applied to the following tuple? (Select two answers)
Assuming that the following code has been executed successfully, selected the expression which evaluate to True (Select two answers)

Which of the following expressions evaluate to True? (Select two answers)
What is the expected behavior of the following snippet?

It will:
What is a true about python class constructors? (Select two answers)
Which of the following statements are true? (Select two answers)
What is the expected behavior of the following code?
