Read and download the CBSE Class 11 Information Practices Data Handling Worksheet in PDF format. We have provided exhaustive and printable Class 11 Informatics Practices worksheets for Data Handling, 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 Data Handling
Students of Class 11 should use this Informatics Practices practice paper to check their understanding of Data Handling 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 Data Handling Worksheet with Answers
Question: Identify the data types of the following values given bellow –
3, 3j, 13.0, „12‟, ”14”, 2+0j, 19, [1,2,3], (3,4,5)
Answer: 3 – int 3j – complex 13.0 – float ’12’– string “14” – string
2+0j – complex 19– int [1,2,3]– list (3,4,5) – tuple
Question: What will be the output of the following
(a)12/4 (b)14//14 (c)14%4 (d) 14.0/4 (e) 14.0//4 (f)14.0%4
Answer: (a) 3.0 (b) 1 (c) 2 (d) 3.5 (e) 3.0 (f) 2.0
Question: What will be the output of the following ?

Answer: 4
4.25
1
4
Question: What will be the output of the following ?
(a) bool(0) (b) bool(„0‟) (c) bool(int(„0‟))
(d) bool(str(0.0)) (e) bool(0j) (f) bool(0.0)
Answer: (a) False (b) True (c) False
(d) True (e) False (f) False
Question: What will be the output of the following ?
(a)87//5 (b)(87//5.0) == (87//5) (c) 87//5.0 (d) 17%5.0
Answer: (a) 17 (b) True (c) 17.0 (d) 2.0
Question: int(„a‟) produces error. Why?
Answer: This is because „a‟ is an invalid literal for int() with base 10.
Question: Write following expressions in Python.
![]()
Answer: (a) (bbh)/3
(b) d=math.sqrt(pow(x2-x1,2)+pow(y2-y1,2))
(c) x1=((-b) + math.sqrt((bb)-(4ac)))/(2a)
x2=((-b) – math.sqrt((bb)-(4ac)))/(2a)
(d) pow(a,n) * pow(a,m) = pow(a,m+n)
Short Answer Type Questions
Question: What are data types? What are Python’s built-in core data types?
Answer: Every value in Python has a datatype. Since everything is an object in Python programming, data types are actually classes and variables are instance (object) of these classes. There are various data types in Python. Some of the important types are listed below. (i) Numbers (ii) String (iii) List (iv) Tuple (v) Dictionary
Question: Which data types of Python handle Numbers?
Answer: It is cleared by name that Number data types are used to store numeric value in Python. The Numbers in Python have following core data types:
(i) Integers
a. Integers (signed)
b. Booleans
(ii) Floating-Point Numbers
(iii) Complex Numbers
Question: Why is Boolean considered a subtype of Integers?
Answer: Because Boolean Values False and True behave like the values 0 and 1, respectively. So Boolean type is a subtype of plain integers.
Question: What do you understand by term „immutable‟?
Answer: Immutable types are those data types that can never change their value in place. In Python the following types are immutable:
(i) integers
(ii) floating-point numbers
(iii) Booleans
(iv) Strings
(v) Tuples
Question: What will be the output of the following code? Why?
(a) 13 or len(13) (b) len(13) or 13
Answer: (a) 13 (b) TypeError: object of type ‘int’ has no len().
Question: What are mutable and immutable types in Python? List both of them.
Answer: Mutable types means those data types whose values can be changed at the time of execution.
They are as follows:
- Lists
- Dictionaries
- Sets
Immutable types are those data types that can never change their value in place. In Python the following types are immutable:
- integers
- floating-point numbers
- Booleans
- Strings
- Tuples
Question: What are augmented assignment operators? How are they useful?
Answer: An augmented assignment is generally used to replace a statement where an operator takes a variable as one of its arguments and then assigns the result back to the same variable. A simple example is x += 1 which is expanded to x = x + (1). Similar constructions are often available for various binary operators. They are helpful in making the source code small.
Skill Based Questions



| CBSE Class 11 Information Practices Question Bank Of All Chapters Worksheet |
| CBSE Class 11 Information Practices Worksheet |
| CBSE Class 11 Information Practices Basic Computer Organization Worksheet |
| CBSE Class 11 Information Practices C++ Practical List Worksheet |
| CBSE Class 11 Information Practices Computer Organisation Worksheet |
| CBSE Class 11 Information Practices Introducing Python Pandas Worksheet |
| CBSE Class 11 Information Practices Introduction To Programming Worksheet |
| CBSE Class 11 Information Practices List Manipulation Worksheet |
| CBSE Class 11 Information Practices Previous Year Question Bank Worksheet |
| CBSE Class 11 Information Practices Relational Databases Worksheet |
Important Practice Resources for Class 11 Informatics Practices
CBSE Informatics Practices Class 11 Data Handling Worksheet
Students can use the practice questions and answers provided above for Data Handling 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.
Data Handling 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 Data Handling 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.
You can download the latest chapter-wise printable worksheets for Class 11 Informatics Practices Chapter Data Handling for free from StudiesToday.com. These have been made as per the latest CBSE curriculum for this academic year.
Yes, Class 11 Informatics Practices worksheets for Chapter Data Handling focus on activity-based learning and also competency-style questions. This helps students to apply theoretical knowledge to practical scenarios.
Yes, we have provided solved worksheets for Class 11 Informatics Practices Chapter Data Handling to help students verify their answers instantly.
Yes, our Class 11 Informatics Practices test sheets are mobile-friendly PDFs and can be printed by teachers for classroom.
For Chapter Data Handling, regular practice with our worksheets will improve question-handling speed and help students understand all technical terms and diagrams.