CBSE Class 11 Information Practices Introducing Python Pandas Worksheet

Read and download the CBSE Class 11 Information Practices Introducing Python Pandas Worksheet in PDF format. We have provided exhaustive and printable Class 11 Informatics Practices worksheets for Introducing Python Pandas, designed by expert teachers. These resources align with the 2025-26 syllabus and examination patterns issued by NCERT, CBSE, and KVS, helping students master all important chapter topics.

Chapter-wise Worksheet for Class 11 Informatics Practices Introducing Python Pandas

Students of Class 11 should use this Informatics Practices practice paper to check their understanding of Introducing Python Pandas as it includes essential problems and detailed solutions. Regular self-testing with these will help you achieve higher marks in your school tests and final examinations.

Class 11 Informatics Practices Introducing Python Pandas Worksheet with Answers

Very Short Answer Type Questions


Question: Write the shape of the following and arrays:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-1

Answer: (a) (4,) (b) (c) (2,4)

Question: NumPy stands for . . . . . . . . . . . . . . . . . .
Answer: Numerical Python.

Question: How to install Python Pandas? Write command.
Answer: pip install pandas.

Question: NumPy is installed when you install Pandas. (True/False).
Answer: True.

 

Short Answer Type Questions

Question: What is Pandas library of Python? What is its significance?
Answer: Pandas library of Python is for data analysis. It makes available various tools for data analysis and makes it simple and easy process.

Question: What do you understand by axes in a NumPy array? Define axes for a 2D ndarray?
Answer: Axes of an array describes the order of indexing into the array. For ex- axes=0 refres to the first index coordinate, axis=1 the second etc.

Question: How is Series data structure different from a DataFrame data structure?
Answer: A Series is a one-dimensional object that can hold any data ype such as integer, float and strings. It has only one axis(0).
A DataFrame is a two dimensional object that can have columns with potential different types. It has two axis(axis 0 and 1).

Question: Name some common data structures of Python‟s Pandas library?
Answer: Numpy Array, Series , DataFrame.

 

Question: If a Python list is having 7 integers and a numpy array is also having 7 integers, then how are these two data structure similar or different from one another?
Answer: 
1. Numpy array will be occupying less space than list.
2. Vectorized operation is possible with numpy array but not with list.
3. The process of accessing elements is same in both.

Question: Given a list L = [3,4,5] and an ndarray N having elements 3,4,5, what will be the result produced by:

(a) L * 3

(b) N * 3

(c) L + L

(d) N + N

Answer: (a)[3,4,5,3,4,5,3,4,5]

(b) ([9,12,15])

(c) [3,4,5,3,4,5]

(d) ([6,8,10])

Question: Write code to create ndarray having six zeros in it. Write statements to change 3rd and 5th elements of this ndarray to 15 and 25 respectively.
Answer:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-2

Question: How is a series object different from and similar to ndarrays? Support your answer with example.
Answer: Series object is a one dimensional object that contains array like values and associated indexes of those values. ndarrays are also similar to series objects but there are some differences that makes them distinctively different types. which are-

  1. in ndarrays, you can perform vectorized operations only if the shapes of two ndarrays match, otherwise it returns an error. but with series objects, the data of two series object is aligned as per matching indexes for non-matching indexes, NaN is returned.
  2. in ndarrays, indexes are always numeric starting from 0 onwards, but series object can have any type of indexes including numbers, letters, labels, strings etc.

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-3

Question: Write a python code to create a series object Temp1 that stores temperatures of seven days in it. Take any random seven temperatures.
Answer:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-4

Question: Write a python code to create a series object Temp1 that stores temperatures of seven days of week. Its indexes should be „Sunday‟, „Monday‟, . . . „Saturday‟.
Answer:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-5

Question: Write commands to print following details of series object seal.
(a) If the series is empty. (b) Indexes of the series.
(c) The data type of underlying data (d) If the series stores any NaN value.

Answer:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-6

 

Skill Based Questions

Question: given the following series objects:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-7

(a) What will be the result of S1 + S2?
(b) What will be the result of S1 – S2?

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-8

Question: Consider the following Series object namely S:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-9

What will be returned by following statements?
(a) S *100 (b) S>0 (c)S1 = pd.Series(S) (d) S2=pd.Series(S1) + 3
What will be the values of Series objects S1 and S2 created above ?

Answer:

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-10

Question: What will be the output produced by: (suppose pandas has been imported as pd)

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-11

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-12

Question: What will be the output produced by following code, considering the Series object S given in above question.

(a) print(s[1:1]

(b)print(s[0:1])

(c) print(s[0:2])

(d) s[0:2]=12

Print(s)

(e) print(s.index)

print(s.values)

CBSE-Class-11-Information-Practices-Introducing-Python-Pandas-Worksheet-13

Question: Find the error and correct:
data=np.array([„a‟,‟b‟,‟c‟,‟d‟,‟e‟,‟f‟])
s=pd.Series(data,index=[100,101,102,103,104,105])
print(s[102,103,104])

Answer:
data=np.array([„a‟,‟b‟,‟c‟,‟d‟,‟e‟,‟f‟])
s=pd.Series(data,index=[100,101,102,103,104,105])
print(s[2:5])

Question: if Ser is a Series type object having 30 values, then how are statements (a), (b) and (c), (d) similar and different?
(a) print(Ser.head()) (b) print(Ser.head(8))
(c) print(Ser.tail()) (d) print(Ser.tail(11))
​​​​​​​
Answer: (a) will print top 5 values (b) will print top 8 values
(c ) will print 5 bottom values (d) will print 11 bottom values

CBSE Informatics Practices Class 11 Introducing Python Pandas Worksheet

Students can use the practice questions and answers provided above for Introducing Python Pandas to prepare for their upcoming school tests. This resource is designed by expert teachers as per the latest 2026 syllabus released by CBSE for Class 11. We suggest that Class 11 students solve these questions daily for a strong foundation in Informatics Practices.

Introducing Python Pandas Solutions & NCERT Alignment

Our expert teachers have referred to the latest NCERT book for Class 11 Informatics Practices to create these exercises. After solving the questions you should compare your answers with our detailed solutions as they have been designed by expert teachers. You will understand the correct way to write answers for the CBSE exams. You can also see above MCQ questions for Informatics Practices to cover every important topic in the chapter.

Class 11 Exam Preparation Strategy

Regular practice of this Class 11 Informatics Practices study material helps you to be familiar with the most regularly asked exam topics. If you find any topic in Introducing Python Pandas difficult then you can refer to our NCERT solutions for Class 11 Informatics Practices. All revision sheets and printable assignments on studiestoday.com are free and updated to help students get better scores in their school examinations.

Where can I download the 2025-26 CBSE printable worksheets for Class 11 Informatics Practices Chapter Introducing Python Pandas?

You can download the latest chapter-wise printable worksheets for Class 11 Informatics Practices Chapter Introducing Python Pandas for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.

Are these Chapter Introducing Python Pandas Informatics Practices worksheets based on the new competency-based education (CBE) model?

Yes, Class 11 Informatics Practices worksheets for Chapter Introducing Python Pandas focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.

Do the Class 11 Informatics Practices Chapter Introducing Python Pandas worksheets have answers?

Yes, we have provided solved worksheets for Class 11 Informatics Practices Chapter Introducing Python Pandas to help students verify their answers instantly.

Can I print these Chapter Introducing Python Pandas Informatics Practices test sheets?

Yes, our Class 11 Informatics Practices test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.

What is the benefit of solving chapter-wise worksheets for Informatics Practices Class 11 Chapter Introducing Python Pandas?

For Chapter Introducing Python Pandas, regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.