CBSE Class 11 Information Practices Introducing Python Pandas Worksheet

Chapter-wise Worksheets for Class 11 Informatics Practices: Introducing Python Pandas

Review targeted academic worksheets with the CBSE Class 11 Information Practices Introducing Python Pandas Worksheet. Built according to official educational standards for the 2026-27 term, these downloadable Class 11 Informatics Practices resources support effective daily practice and detailed self-evaluation for Introducing Python Pandas.

Practice Class 11 Informatics Practices Worksheets: Introducing Python Pandas

Navigate directly to the solved Informatics Practices worksheets using the digital viewer below. Each practice set includes detailed step-by-step solutions, allowing students to instantly cross-check their work and identify areas requiring further revision.

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

Free CBSE Practice Worksheets: Class 11 Informatics Practices Introducing Python Pandas

Mastering Introducing Python Pandas with Printable Worksheets

Access structured practice worksheets for Introducing Python Pandas aligned with the 2026 CBSE curriculum. These downloadable exercises for Class 11 Informatics Practices help students build accuracy and reinforce core concepts for upcoming school tests.

Verified Solutions and NCERT Alignment

Each worksheet draws directly from authorized standard textbooks to maintain academic accuracy. Evaluating your finished exercises against expert-verified solutions helps master the formal presentation standards expected in school evaluations.

Additional Study Resources for Class 11 Informatics Practices

Wrap up your chapter revision by testing your knowledge against standard objective question formats. Explore our full library of free, up-to-date printable assignments to maximize your academic results in upcoming CBSE evaluations.

FAQs

Where can I download the 2026-27 CBSE printable worksheets for Class 11 Informatics Practices Introducing Python Pandas?

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

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

Yes, Class 11 Informatics Practices worksheets for 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 Introducing Python Pandas worksheets have answers?

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

Can I print these 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 Introducing Python Pandas?

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