Class 11 CS Chapter 10 Back Exercise Solutions Sumita Arora New Syllabus / Listing11CSSA, Uncategorized / By Neha 1. What is the significance of Pandas Library ? ...click here for answer 2. Name some common data structures of Python’s Pandas library. ...click here for answer 3. If a Python list is having 7 integers and a num py array is also having 7 integers, then how are these two data structures similar or different from one another ? ...click here for answer 4. Given a list L = [3, 4, 5] and an ndarray N having elements 3, 4, 5. What will be the result produced by : ...click here for answer 5. Write shapes of following ndarrays : (a) (4, ...click here for answer 6. W rite code to create an ndarray having six zeros in it. W rite statements to change 3rd and 5th elements of this ndarray to 15 and 25 respectively. ...click here for answer 7. How is a series object different from and similar to ndarrays ? Support your answer with examples. ...click here for answer 8. Write Python code to create a series object Temp1 that stores temperatures of seven days in it. Take any random seven temperatures. ...click here for answer 9. Write Python code to create a series object Temp2 storing temperatures of seven days of week. Its indexes should be ‘Sunday’, ‘Monday’,… ‘Saturday’. ...click here for answer 10. Write commands to print following details of a series object seal. ...click here for answer 11. A series object (say T1) stores the average temperature recorded on each day of a month. Write code to display the temperatures recorded on : (i) first 7 days (n) last 7 days ...click here for answer 12. Given following series objects When an ...click here for answer