11 Ip Term 1 QP
11 Ip Term 1 QP
11 Ip Term 1 QP
General Instructions:
1. This question paper contains 3 (A,B and C) sections.
2. Section A, consists of 25 Questions (1-25). Attempt any 20 questions.
3. Section B, consists of 24 Questions (26-49). Attempt any 20 questions.
4. Section C, consists of 6 Case Study based Questions (50-55). Attempt any 5 questions.
5. All questions carry equal marks.
Section – A
Section A consists of 25 questions, attempt any 20 questions.
2. Which of the following is usually referred as the brain of the Computer System?
a. Hard Disk
b. Monitor
c. CPU
d. CU
3. A program is a ____________ .
a. set of registers
b. set of instructions
c. set of ICs
d. None of the above
Page 1 of 9
5. The third generation computers used __________ .
a. Transistors
b. Vacuum Tubes
c. ICs
d. VLSI
6. The __________ is a buffer memory placed between the HDD and RAM to speed up the
processing by reducing the average access time.
a. IC
b. Register
c. Cache
d. ROM
7. Which of the following is the correct order w.r.t increasing order of access speed of the
memories:
a. RAM<Cache<HDD<SSD
b. Cache<HDD<SSD<RAM
c. HDD<SSD<RAM<Cache
d. Cache<RAM<SSD<HDD
8. _______ converts high level language into machine level language without converting into an
intermediate code.
a. Compiler
b. Interpreter
c. Assembler
d. None of the above
Page 2 of 9
d. Integrated Development and Learning Environment
12. _____________ is leading whitespace at the beginning of a statement and is used for
grouping statements together.
a. loop
b. Identifier
c. Indentation
d. Literals
14. Which of the following is the standard mapping data type in Python?
a. List
b. String
c. Dictionary
d. Tuple
16. ______________ error is also known as semantic error and is sometimes difficult to identify.
a. Syntax
b. Logical
c. Runtime
d. None of the above
Page 3 of 9
d. Comments are used to indent python statements
a. 30
b. [30,30]
c. 3
d. IndexError
23. The values in a dictionary can be _______ and be of _______ data type.
a. repeated, mutable or immutable
b. repeated, mutable
c. unique, mutable or immutable
d. repeated, immutable
24. Which membership operator is used to check if a key is present in a dictionary or not?
a. in
b. in dict
c. in key
d. key in
Page 4 of 9
25. Consider a dictionary Dict1 with the following statements :
del Dict1
print(Dict1)
What will be the output of the print statement?
a. 0
b. 1
c. NameError
d. ValueError
Section – B
Section B consists of 24 questions, attempt any 20 questions.
26. A document or image stored in a hard disk or a pen drive is referred to as ________ .
a. Soft Copy
b. Hard Copy
c. Carbon Copy
d. Duplicate Copy
29. Which of the following facilitates entry or searching of data through voice?
a. Google Assistant
b. Microsoft Cortana
c. Amazon’s Alexa
d. All of these
Page 5 of 9
31. Which of the following printer can produce carbon copy?
a. Inkjet Printer
b. Laser Printer
c. Dot Matrix Printer
d. Both a and b
32. Which of the following is/are the functions of the operating system?
a. Process Management
b. Memory Management
c. Device Management
d. All of these
33. The ________ acts as an interface between an attached device and the OS.
a. Assembler
b. Interpreter
c. Device Driver
d. Compiler
36. Siri wants to store the average marks scored by each student of her class. Suggest
her the most suitable data type from the following.
a. int
b. float
c. bool
d. String
37. Consider a tuple T1=(50,23,7,9,11). Which of the following statements can be used
to replace the value 23 with 80?
a. T1[23]=80
b. T1[2]=80
c. T1[1]=80
d. TypeError: 'tuple' object does not support item assignment
40. Which one the following is not true about Python type casting?
a. It is the process of converting one data type to another.
b. Python provides some predefined functions for explicit type casting.
c. Implicit type casting is automatically performed by the Python interpreter.
d. There is no loss of data in explicit type casting.
Page 7 of 9
45. Which of the following function can be used to create an empty dictionary?
a. dictionary( )
b. dict( )
c. newdict( )
d. emptydict( )
a. True
b. False
c. 0
d. Error
47. Which of the following function returns a list of tuples as key-value pair
from a dictionary?
a. get()
b. gets()
c. item()
d. items()
Section C
Section C, consists of 6 Case Study based Questions (50-55). Attempt any 5 questions.
50. Which one of the following will give the output as ‘IP’?
a. List1[2]
b. List1[3,2]
c. List1[3][2]
d. List1[2][1]
Page 8 of 9
51. What will be the output of the statement :
List1[3:10]
a. [25,27,30,30,30,30,30,30,30,30]
b. [25,27,30, 10, 18, [20,’IP’]]
c. [25,27,30]
d. IndexError
55. Which one of the following statement will return the element at index 4 in List1 and
also remove it form the list?
a. List1.del(4)
b. List1.pop(4)
c. List1.remove(4)
d. Both a and b
Page 9 of 9