Computer_Science_11_Std
Computer_Science_11_Std
General Instructions:
1. This question paper contains five sections, Sections A to E.
2. All questions of a particular section must be attempted in the correct order.
3. SECTION A has 18 Objective Type Questions of 1 mark each.
4. SECTION B has 07 Very Short Answer Type Questions carrying 02 marks each.
5. SECTION C has 05 Short Answer Type Questions carrying 03 marks each.
6. SECTION D has 02 Questions carrying 04 marks each.
7. SECTION E has 03 Questions carrying 05 marks each.
8. All programming questions are to be answered using Python Language only
Section A
1. Which of the following is not a valid relationl operator? 1
a. +=
b. >=
c. ==
d. !=
3. Which of the following memory types can store the data or information 1
permanently?
a. ROM
b. Flash Memory
c. RAM
d. Hard Disc
a. AND
b. OR
c. XOR
d. NAND
6. Python programs stored with file extension 1
a. ,odt
b. .py
c. .pty
d. .obj
a. import math
print(pow.math(12,4))
b. import maths
print(maths.pow(12,4))
c. import math
print(math.pow(12,4))
d. from math import pow
print(math.pow(12,4))
10. Evaluate the following expression and identify the correct answer: 1
4 * 5 + 3**2 %7//2-3
a. 18
b. -3
c. 44
d. 25
11. Which of the following will delete the key :value pair for key = "input" in 1
dictionary?
D1={"output": "monitor", "input":"keyword", "hardware": "mouse","software" :
"VLC"}
a. del D1["input"]
b. D1["tiger"].delete()
c. Delete(D1["input"])
d. del(D1.[ "input"])
12. Pick up the system utility software from the following: 1
a. MS Paint
b. LOGO
c. Ubuntu
d. Anti virus
18. Assertion(A): Slicing a list in python creates a new list containing the sliced 1
elements.
Reasoning(R): When you slice a list in Python, it returns a new list containing the
specified elements, while the original list remains unchanged.
Section B
19. Write down the differences between Compiler and Interpreter. 2
OR
Consider the following string mySchool
mySchool=”Dav Model School”
a. Print(mySchool[:3]).
b. Print(mySchool[-5:-1])
20. Rewrite the following Python program after removing any/all logical and syntax 2
error(s), underline each correction done in the code:
(b)Shweta found a crumpled paper under her desk. She picked it up and opened
it. It contained some text which was struck off thrice. But she could still figure out
easily that the struck off text was the email ID and password of Himanshu, her
classmate. What is ethically correct for Shweta to do?
OR
Draw the logic gate of the following expression:
Y=(NOT A OR B) AND ( A OR NOT B )
24. Define the De Morgan’s Laws and prove it by using truth table. 2
OR
Give the output of the following when num1=4,num2=3 and num3=2
NOTE: Consider the initial value of num1 to be 4 for each of the following parts.
a. num1+=num2+num3
print(num1)
b. num1=num1**(num2+num3)
print(num1)
c. num1=2+9*((3*12)-8)/10
print(num1)
d. num1=24//4//2
print(num1)
25. Write the Boolean expression for the following logic circuit shown below: 2
SECTION C
26. Write a Python program that accepts a string from user and display the reverse of 3
the string.(Ex: if Input is “Hello” then Ouput is “olleH”)
OR
Write a Python program that accepts a string from user and display list containing
indices of capital letters of the string.
28. What will be the output of the Python code given below: 3
T1= "IND-23"
T2= ""
I=0
while I<len(T1):
if T1[I] >= "0" and T1[I]<= "9":
Val=int(T1[I])
Val=Val+1
T2=T2+ str(Val)
elif T1[I]>= "A" and T1[I]<= "Z":
T2=T2+T1[I+1]
else:
T2=T2+ "*"
I+=1
print(T2)
29. a. Write a programe to print the pattern,. 3
1
21
321
4321
54321
Section D
31. a. How many times the values of i and j will be displayed after executing the 2+2
following python code?
i,j=5,6
while i<20:
i=i+j
j=j-1
print(i,j)
32. a. A real value can be converted to nearest integer value with the help of 2+2
two built-in functions: int() and round().
In this context differentiate the above built-in functions with suitable
examples.
b. Write a program that will take a string as input and convert all the
vowels in the string to upper case and rest in lower case.
Section E
33. a. Find the output of the following python code: 1+2+2
(i) a,b,c,d=(1,2,3,4)
myt=(a,b,c,d)*2 +(5**2,)
print(len(myt)+2)
(ii) Mystring= "programming is Fun"
print(Mystring[-50:10:1].endswith('in'))
print(Mystring.partition('m'))
b. Write a program to count the number of lower case characters and upper case
characters in a given strings.
Example: I love My School
34. Create a dictionary named dict_1 and perform the following: 1*5=5
a. dict_1 should have first five primary numbers as key and their number
names as value
b. A code to return the keys in the dictionary.
c. To check if 7 is present or not.
d. To retrieve the value corresponding to 5
e. Differentiate between pop andpopitem.
OR