CLASS 11 TERM 1-SETB
CLASS 11 TERM 1-SETB
ACADEMIC YEAR
2 0 2 3 - 2 0 2 4
TERM – I EXAMINATION
CLASS: XI DATE: SUB: COMPUTER SCIENCE(083) MARKS: 70 DURATION: 3HRS
SET B
General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A has 18 questions carrying 1 mark each.
4. Section B has 07 very short Answer type questions carrying 02 marks each.
5. Section Chas 05 short Answer type questions carrying 03 marks each.
6. Section D has 03 Long Answer type questions carrying 05 marks each
7. Section E has 02 questions carrying 04 marks each. One internal choice is given in Q35, against part c only.
8. All programming questions are to be answered using Python Language only.
SECTION A
1. The __________ allows to recognize hand-written documents into machine –encoded text. 1
a)MICR b)OCR c) QR code reader d) Bar code reader
2. Which of the following falls under system software? 1
a)Interpreter b) MS word c)Windows d) Disk cleaner
3. Who invented the mouse? 1
a)Charless Babbage b) Douglas Engelbart c) Guido Van Rossum d) Federico Faggin
4. The full form of CAD is __________ 1
5. The ____ is capable of recognizing a pre-specified type of mark made with dark pencil or ink. 1
a)OCR b)OMR c)MICR d)ROM
6. A device driver is a ____________ that controls a peripheral device. 1
a)hardware b)program c) device d) none of these.
7. For ________ gate, if both the inputs are “false” or if both the inputs are “true” then the output is 1
“false”
a)NAND b)OR c)NOR d)XOR
8. Dual of the Boolean expression A’+B.C’ is __________. 1
a)A+B’.C b)A’+B’+C c)A.B’+C d)A’.B+C’
9. Name the following law of Boolean Algebra. 1
A.(B.C)=(A.B).C
a)Associative Law b)Absorption Law c)Idempotent Law d)Commutative Law
10. The radix of Hexadecimal number is _____ 1
a)2 b)10 c)16 d)8
11. Identify the valid identifier from the following. 1
a) Total_marks b)marks-35% c)Basic Pay d) 25thday
12. What will be printed when we execute the following statement? 1
print(“Python”*2)
a)Python*2 b) Python*Python c)PythonPython d)none of these
13. Single line comment line in Python starts with ______ symbol. 1
a)% b) “ c) # d) &
a)Z=A’.B+A.B’
b)Z=A.B+A’.B’
c)Z=A+B+A’+B’
d)Z=A’.B+A.B
Q17 and 18 are ASSERTION AND REASONING based questions Mark the correct choice as
(a) Both A and R are true and R is the correct explanation for A
(b) Both A and R are true and R is not the correct explanation for A
(c) A is True but R is False
(d) A is false but R is True
17. Assertion (A): We can not change the element of string. 1
Reason (R):. String is a immutable datatype.
18. Assertion (A): 781 is an octal number. 1
Reason (R): The radix of octal number is 8.
SECTION B
19. Compare Compiler.and interpreter. 2
20. Write the full form of the following. 2
a)MSB and LSB.
b)ASCII
(OR)
Write the Dual of the given Boolean expression.
(A+B’.C).(A.C’)
Rite the truth table for the following.
F=(x.y)’+(x’+y’)
(OR)
Draw the flowchart to find the largest of 3 numbers.
SECTION C
26. Solve the following. 3
a)101=(_______)2
b)(4723)8 =(__________)10
28. Draw the flowchart to check whether the given year is leap or not. 3
(OR)
Write a program to check whether the given number is odd or even.
.
29. What do you know about MICR. 3
What are the different functions of system software.
b) Find the errors in the following code. Underline the corrections you made.
N=input(“Enter the value of N”))
M=N*N
Print(The value of M is = M)
OR
OR
Draw the Boolean Logic circuit for the following Boolean expressions.
a)F=(X.Y’) + (X’+Z)
b)F=(P+Q’+R) . (P’+Q+R’)
35. Evaluate the following Python expressions, where the values of A=3,B=4,C=2. 4
a) i)A*B//C+(A%B)
ii)A>B and A+B!=C or (not(C<=A))