11 CS
11 CS
SECTION-A
1.
------------------------------- is a language processor which translates the program written in High
level language to Machine language in one go.
a). Assembler b). Interpreter c). Compiler d). Interpreter
1
OR
Write the full form of -
(I). ISCII (II). BIOS
2. Which type of Memory is used to store those parts of data and instructions that are being
repeatedly used by the CPU.
1
(i) RAM (ii) Cache memory
(iii). ROM (iv) Secondary Memory
3. Boolean expression X+X’ =?
(i) X (ii) 0 (iii) 1 (iv) X+X
OR
1
Which of the following is not a characteristics of a computer?
(i)Diligence (ii) I.Q
(iii) Accuracy (iv) Versatility
4. __________ Gate gives a high output (1) if either of inputs are high.
1
a. XOR b. OR c. NOR d. AND
5. ……………………. is a software that controls a particular type of hardware device that is
attached to the computer. 1
a). Controller b). Assembler c). Device Driver d). Operating System
6. ……………..is an encoding scheme that facilitates the use of Indian language on computers and
1
provides a common standard for coding Indian Scripts.
7. Write the equivalent Boolean expression for the following Logic Circuit : 2
OR
2
What do you mean by Logic Gate? Make truth table of NAND Gate.
CSC/XI-SEE/2022-23/QP
x=15//4 + 5**2
(i) 28 (ii) 8 (iii) 25 (iv) Error
18. Preetil is making a code in python to print all those numbers which are divisible by 5 or7 from
the given list. she is getting some errors in code. Rewrite the corrected code and underline
the errors.
A=[ 10,21,45,64,23,49] 2
for i in A
if i % 7 or 5 =0:
print(A)
19. Predict the output of following code snippet:
(i)
x, y=20,50
y, x, y=x, y-10, x+10
print(x, y)
(ii) 2
a, b=12,13
c, b=a*2,a//2
print(a, b, c)
21. What do you mean by Logical Error? How it is different from syntax error? 2
22. Draw a flowchart to print Greatest of 3 numbers. 3
23. What do you mean by algorithm? Write an algorithm to take age from the user and print
1+2
whether the user is eligible to vote or not.
24. Find the output of the following
text="FifaWC@com"
L=len(text)
ntext=""
for i in range (0,L):
3
if text[i].isupper():
ntext=ntext+text[i].lower()
elif text[i].isalpha():
ntext=ntext+text[i].upper()
else:
ntext=ntext+'bb'
print(ntext)
25 Considering the list given:
list1 = [25, 30, 56, 12, 45, 21, 7, 20]
a. write code to sort the list in descending order.
b. What will be the output of :
del list1[:5]
3
print(list1)
c. Add a new list --- list2=[100,200] at the end of list1 so that the final output should
be:
list1 = [25, 30, 56, 12, 45, 21, 7, 20,100,200]
CSC/XI-SEE/2022-23/QP
28. Write a Python script (Program) to take an integer number from the user and test: if it is a 4
Prime number, display “ Prime Number“ otherwise display “Not a Prime number”.
29. The record of a student (Name, Roll No., Marks in five subjects and percentage of marks) is
stored in the following list:
stRecord = ['Binita','A-10', [56,98,99,72,69], 78.8] 4
Write Python statements to retrieve the following information from the list stRecord.
31. What are disability issues while teaching Computers? Mention any 4 issues. 2
32 What do you mean by net etiquettes? Mention few Social media etiquettes. 2
34 What do you mean by the term Open Source Software? Name any 2 Open Source Softwares. 2