Q 7 jrgeshestm teejthjkljklh srthklkltjsjkghsegbn tjhrhrthgkjerjklhbgebgjasb nerjks
P.I.P: - 7.1 Q1. Consider the following code: what is the value of ‘a’ at the end? a = [1, 2, 3] a [2] = 0 a [a [ 2 ] ] = 5 a [1:2] = [] Answer = Value of ‘a’ at the end is: [5, 0] Q2. You have a list a = [1, 2, [3, 4], 5]. Now answer the following. Verify your answers in Python Shell. (a) What is the length of a? 4 (b) How many elements does it contain? What are their types? It contain 4 element. 3 integer type & 1 list. (c) How many integers? 3 integer (d) What does len(a[2]) return? 2 (e) What does a[len(a)] evaluate to? It give error. (f) What does a [-1 * len(a)] evaluate to? Output:- 1 Q4. Giv...