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]
zero
five
seven
three
What is the expected behavior of the following code?
it outputs 2
the code is erroneous and it will not execute
it outputs 3
it outputs :