Answer
(a) List=[False for i in range(100)]
(b) List[-1]=5.5
(c) print(List[0]+List[1])
(d) Sum=List[0]+List[1]+List[2]+List[3]+List[4]
(e) print(min(List))
(f) print(List[random.randint(0,len(List)-1)])
Work Step by Step
(a) Creating the list using generator
(b) Using the negative indexing to change last element
(c) Printing the sum of first two elements
(d) Calculating the sum of first five elements
(e) Using built-in function min to find the minimum element in the list.
(f) Using random library's function to generate the random index and printing the element at that index.