Page 43 - ipp11
P. 43
MODEL TEST PAPER 2 (SOLVED)
CLASS XI
INFORMATICS PRACTICES (065)
Maximum Marks: 70 Time Allowed: 3 hrs
General Instructions:
1. This question paper contains 37 questions.
2. All questions are compulsory. However, internal choices have been provided in some questions. Attempt only one of the
choices in such questions.
3. The paper is divided into 5 Sections—A, B, C, D and E.
4. Section A consists of 21 questions (1 to 21). Each question carries 1 Mark.
5. Section B consists of 7 questions (22 to 28). Each question carries 2 Marks.
6. Section C consists of 3 questions (29 to 31). Each question carries 3 Marks.
7. Section D consists of 4 questions (32 to 35). Each question carries 4 Marks.
8. Section E consists of 2 questions (36 to 37). Each question carries 5 Marks.
9. All programming questions are to be answered using Python language only.
10. In case of MCQ, text of the correct answer should also be written.
Section A (21 X 1 = 21 Marks)
1. State True or False:
Python supports both procedural and object-oriented programming. [1]
Ans. True
2. Which of the following is a volatile memory? [1]
(a) Hard Disk (b) ROM (c) RAM (d) Flash Memory
Ans. (c) RAM
3. What among the following is the function of an OCR device? [1]
(a) To print documents (b) To scan QR codes
(c) To recognize text from images (d) To measure temperature
Ans. (c) To recognize text from images
4. What will be the output of the following Python code? [1]
print("Hello", end=" @ ")
print("World")
(a) Hello @ World (b) HelloWorld
(c) Hello \n World (d) Syntax Error
Ans. (a) Hello @ World
5. Which of the following is not a valid feature of Python? [1]
(a) It is an interpreted programming language.
(b) It is a dynamically typed language.
(c) It is a low-level language.
(d) It is easy to learn.
Ans. (c) It is a low-level language.
6. Which of the following is a valid identifier in Python? [1]
(a) 1st_name (b) my-name (c) name_1 (d) import
Ans. (c) name_1
7. Which of the following is a mutable data type in Python? [1]
(a) Tuple (b) List (c) String (d) Integer
Ans. (b) List
M.13