Class 11 CS Chapter 11 Back Exercise Part C Solutions Sumita Arora New Delhi / Listing11CSSA, Uncategorized / By Neha 2 . Write a program that inputs two lists and creates a third, that contains all elements of the first followed by all elements of the second. ...click here for answer 8. Write a program that reads the n to display nth term of Fibonacci series. ...click here for answer 9. Write programs as per following specifications ...click here for answer 6. Write a program that takes any two lists L and M of the same size and adds their elements together to form a new list N whose elements are sums of the corresponding elements in L and M. For instance, if L = [3 ,1,4] and M – [1,5,9], then N should equal [4,6,13]. # Code ...click here for answer 5. Create the following lists using a for loop : ...click here for answer 3. Ask the user to enter a list containing numbers between 1 and 12. Then replace all of the entries in the list that are greater than 10 with 10. ...click here for answer 4. Ask the user to enter a list of strings. Create a new list that consists of those strings with their first characters removed. ...click here for answer 7. Write a program that rotates the elements of a list so that the element at the first index moves to the second index, the element in the second index moves to the third index, etc., and the element in the last index moves to the first index. # Code ...click here for answer