CBSE Class 11 Information Practices Data Handling Worksheet

Read and download free pdf of CBSE Class 11 Information Practices Data Handling Worksheet. Students and teachers of Class 11 Informatics Practices can get free printable Worksheets for Class 11 Informatics Practices Data Handling in PDF format prepared as per the latest syllabus and examination pattern in your schools. Class 11 students should practice questions and answers given here for Informatics Practices in Class 11 which will help them to improve your knowledge of all important chapters and its topics. Students should also download free pdf of Class 11 Informatics Practices Worksheets prepared by teachers as per the latest Informatics Practices books and syllabus issued this academic year and solve important problems with solutions on daily basis to get more score in school exams and tests

Worksheet for Class 11 Informatics Practices Data Handling

Class 11 Informatics Practices students should download to the following Data Handling Class 11 worksheet in PDF. This test paper with questions and answers for Class 11 will be very useful for exams and help you to score good marks

Class 11 Informatics Practices Worksheet for Data Handling

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 ?

CBSE-Class-11-Information-Practices-Data-Handling-Worksheet-1

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.

CBSE-Class-11-Information-Practices-Data-Handling-Worksheet-2

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-Data-Handling-Worksheet-3

CBSE-Class-11-Information-Practices-Data-Handling-Worksheet-4

CBSE-Class-11-Information-Practices-Data-Handling-Worksheet-5

Worksheet for CBSE Informatics Practices Class 11 Data Handling

We hope students liked the above worksheet for Data Handling designed as per the latest syllabus for Class 11 Informatics Practices released by CBSE. Students of Class 11 should download in Pdf format and practice the questions and solutions given in the above worksheet for Class 11 Informatics Practices on a daily basis. All the latest worksheets with answers have been developed for Informatics Practices by referring to the most important and regularly asked topics that the students should learn and practice to get better scores in their class tests and examinations. Expert teachers of studiestoday have referred to the NCERT book for Class 11 Informatics Practices to develop the Informatics Practices Class 11 worksheet. After solving the questions given in the worksheet which have been developed as per the latest course books also refer to the NCERT solutions for Class 11 Informatics Practices designed by our teachers. We have also provided a lot of MCQ questions for Class 11 Informatics Practices in the worksheet so that you can solve questions relating to all topics given in each chapter.

Where can I download latest CBSE Printable worksheets for Class 11 Informatics Practices Data Handling

You can download the CBSE Printable worksheets for Class 11 Informatics Practices Data Handling for latest session from StudiesToday.com

Is there any charge for the Printable worksheets for Class 11 Informatics Practices Data Handling

There is no charge for the Printable worksheets for Class 11 CBSE Informatics Practices Data Handling you can download everything free

Are there any websites that offer free test sheets for Class 11 Informatics Practices Data Handling

Yes, studiestoday.com provides all latest NCERT Data Handling Class 11 Informatics Practices test sheets with answers based on the latest books for the current academic session

What topics are covered in CBSE Class 11 Informatics Practices Data Handling worksheets?

CBSE Class 11 Informatics Practices Data Handling worksheets cover all topics as per the latest syllabus for current academic year.

How can I use worksheets to improve my Class 11 Informatics Practices scores?

Regular practice with Class 11 Informatics Practices worksheets can help you understand all concepts better, you can identify weak areas, and improve your speed and accuracy.