Class 12 CS Chapter 9 Back Exercise Part C Solutions Sumita Arora New Syllabus / listing12CSSA, Uncategorized / By Neha 1. Write a program that uses a function called find_in_list() to check for the position o f the first occurrence of v in the list passed as parameter (1st) or -1 if not found. The header for the function is given below def find_in_list ...click here for answer 2. Implement the following function for a linear list, which find outs and returns the number of unique elements in the list ...click here for answer 3. Use a list comprehension to create a list, CB4. The comprehension should consist of the cubes of the numbers 1 through 10 only if the cube is evenly divisible by four. Finally, print that list to the console Note that in this case, the cubed num ber should be evenly divisible by 4, not the original number. ...click here for answer 4. Take two lists, say for example these two : ...click here for answer 5. Suppose we have a list V where each element represents the visit dates for a particular patient in the las* month. We want to calculate the highest number of visits made by any patient. Write a function MVisit(Lst) to do this. A sample ...click here for answer