Data Types

What will be the output of the following
If mylist is [0, 3, 2, 5] then what is mylist * 2?
What will be the output of the following ?
list1 = [0, 2, 7, 4, 5]
print(list1[3: 0: -1])
What will be the output?
d1 ={ 'james': 40, 'peter': 45 }
d2 = { 'james': 466, 'peter': 45 }
d1 > d2