0% found this document useful (0 votes)
25 views4 pages

CLASS 11 TERM 1-SETB

The document is an examination paper for Class XI Computer Science for the academic year 2023-2024, consisting of five sections with a total of 70 marks. It includes various types of questions such as multiple choice, short answer, and programming tasks, all to be answered using Python. The exam covers topics like Boolean algebra, data types, and programming concepts.

Uploaded by

moammed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views4 pages

CLASS 11 TERM 1-SETB

The document is an examination paper for Class XI Computer Science for the academic year 2023-2024, consisting of five sections with a total of 70 marks. It includes various types of questions such as multiple choice, short answer, and programming tasks, all to be answered using Python. The exam covers topics like Boolean algebra, data types, and programming concepts.

Uploaded by

moammed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 4

ALAGAR PUBLIC SCHOOL

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) &

APS/2023-2024/TERM I EXAM/CLASS XI/CS (083)-SET B Page 1 of 4


14. The files in Python have _________ extension. 1
a).mod b).txt c).py d).odb
15. Identify the membership operator. 1
a)is b)in c)eval() d)none of these
16. Find the correct Boolean expression for the given logic circuit 1

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’)

21. What is ROM? What are the types of ROM? 2

22. Convert the following into hexa decimal . 2


a)(769)10 b) (1001101111) 2

23. What is keyword?Give any four examples. 2


(OR)
Write an algorithm to convert the given temperature in Fahrenheit into Celsius.

24. Write the output of the following. 2


APS/2023-2024/TERM I EXAM/CLASS XI/CS (083)-SET B Page 2 of 4
P,Q,R,S=5,3+7,4-2,15
M=Q/P
P=S//R
N=M+P+Q+R
print(M,P,N)

25. Identify the datatypes of the following. 2


a)89.96 b)”Computer” c) False d)[13,56,”red”,10.3]

(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

27. Write Python statements for the following. 3


a)Assign the value 10 to M
b) Get a value of N from user.
c)divide A by B and find the remainder.

b)Find the output of the following code.


P=”Hello”
D=”Be Honest Always”
print(P,D,sep=”@”,end=”*”)

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.

30. a)Convert (D6B8)16 into Octal number . 3

b)Convert (AB53)16 into decimal


SECTION D
31. a)Write a python program to find the area of a circle. 5

b)Find the errors in the following code.


N=Input(“Enter the value os a”)
M=10
Print(M in N)
Print(type(M,N))

32. Solve the following 5

APS/2023-2024/TERM I EXAM/CLASS XI/CS (083)-SET B Page 3 of 4


a) (527)8 = (________)10
b) (1000110101110.1001)2=(__________)8
c)148.14 = (________)16
d)(11010100111)2=(___________)10
e) (AFC)16=(_________)2

33. a)Find the output of the following code. 5


a,b,c=10,5,6
a+=b
b*=c
b,c,a=a,b,c
print(“a=”,a,”b=”,b,”c=”,c)

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

Explain about any five storage devices


.
SECTION E
34 Write and prove De Margon’s Law (Any one) using Truth table and Boolean expressions. 4

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))

b)Convert (FAE)16 into Decimal number.

APS/2023-2024/TERM I EXAM/CLASS XI/CS (083)-SET B Page 4 of 4

You might also like