Class 11 CS Chapter 12 Back Exercise Part C Solutions Sumita Arora New Syllabus / Listing11CSSA, Uncategorized / By Neha 2. ...click here for answer 3. Write a program that interactively creates a nested tuple to store the marks in three subjects for five students, i.e., tuple will look somewhat like : ...click here for answer 4. In the program created in previous question, add a function that computes total marks and average marks obtained by each student. ...click here for answer 5. Write a program that inputs two tuples and creates a third, that contains all elements of the first followed by all elements of the second. ...click here for answer 6. Write a program as per following specification : ...click here for answer 7. Create the following tuples using a for loop : ...click here for answer 8. Given a tuple pairs = ((2, 5), (4, 2), (9, 8), (12,10)), count the number of pairs (a, b) such that both a and b are even. ...click here for answer 9. Write a program that inputs two tuples seq_a and seq_b and prints True if every element in seq_a is also an element of seq_b, else prints False. ...click here for answer 10. Computing Mean. Computing the mean of values stored in a tuple is relatively simple. The mean is the sum o f the values divided by the number o f values in the tuple. That is, # Code ...click here for answer 11. Mean of means. Given a nested tuple tup1 = ( (1, 2), (3, 4.15, 5.15), ( 7, 8, 12, 15)). Write a program that displays the means of individual elements of tuple tup1 and then displays the mean of these computed means . That is for above tuple, it should display as : Mean element ...click here for answer 1. Write a Python program that creates a tuple storing first 9 terms of Fibonacci series. # Code ...click here for answer