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

Agni Practice Paper XI CS

The document outlines the structure and content of the Class XI Computer Science examination for the Kendriya Vidyalaya Sangathan, Bhopal Region, for the year 2022. It includes various sections with different types of questions, such as multiple-choice, short answer, and long answer questions, covering topics like programming, data structures, and cybersecurity. The exam consists of a total of 70 marks and is designed to assess students' understanding of computer science concepts.

Uploaded by

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

Agni Practice Paper XI CS

The document outlines the structure and content of the Class XI Computer Science examination for the Kendriya Vidyalaya Sangathan, Bhopal Region, for the year 2022. It includes various sections with different types of questions, such as multiple-choice, short answer, and long answer questions, covering topics like programming, data structures, and cybersecurity. The exam consists of a total of 70 marks and is designed to assess students' understanding of computer science concepts.

Uploaded by

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

KENDRIYA VIDYALAYA SANGATHAN, BHOPAL REGION

SESSION ENDING EXAMINATION - 2022


Class: XI Subject: Computer Science (083) M Marks: 70 Time Allowed: 3 Hours
 Section A has 18 questions carrying 01 mark each.
 Section B has 07 Very Short Answer type questions carrying 02 marks each.
 Section C has 05 Short Answer type questions carrying 03 marks each.
 Section D has 03 Long Answer type questions carrying 05 marks each.
 Section E has 02 questions carrying 04 marks each. One internal choice is given in Q.34 against part
c only.
Q. No. Section A
1. Find the odd one out: RAM, Hard disk, ROM, Cache Memory 1
2. Operating System does not act as a: 1
a. Resource manager c. Process Scheduler
b. Memory Manager d. Language Processor
3. Expand the term: (a)BIOS (b)ASCII 1
4. Arrange the following memory units in descending order of capacity: 1
Nibble, MB, TB, KB, PB, Byte
5. __________ are the records and traces individuals leave behind as they use the internet. 1
6. Which of the following is not a keyword? 1
(A) eval (B) assert (C) nonlocal (D) pass
7. Select the correct output for following code: 1
s='[email protected]'
s=s.split(‘kv’)
op = s[0] + "@kv" + s[2]
print(op)
(A) mail2@kvsangathan (B) mail2@sangathan. (C) mail2@kvsangathan. (D) mail2kvsangathan.
8. Which of the following statement(s) would give an error after executing the following code? 1
D={'rno':32,'name':'MsArchana','subject':['hindi','english','cs'],
'marks': (85,75,89)} #S1
print(D) #S2
D['subject'][2]='IP' #S3
D['marks'][2]=80 #S4
print(D) #S5
(A) S1 (B) S3 (C) S4 (D) S3 and S4
9. Evaluate following expression: 1
print(True or not True and False)
10. Evaluate following expression: 14/2%3+16**2//5*2-5 1
11. Identify valid relational operator from following: a) <> b) = c) =< d) != 1
12. Write the output of following code: 1
for i in "QUITE":
print(i.lower(),end=”#”)
13. What will be the datatype of d, if d = (15)? 1
(a) int (b) tuple (c) list (d) string
14. Predict the output. 1
marks = {"Ashok":98.6, "Ramesh":95.5}
print(list(marks.keys()))
(a) ‘Ashok’, ‘Ramesh’ (b) 98.6, 95.5 (c) [‘Ashok’,’Ramesh’] (d) (‘Ashok’,’Ramesh’)
15. Given the following dictionaries 1
dict_fruit={"Kiwi":"Brown", "Cherry":"Red"}
dict_vegetable={"Tomato":"Red", "Brinjal":"Purple"}
Which statement will merge the contents of both dictionaries?
(a) dict_fruit.update(dict_vegetable) (b) dict_fruit + dict_vegetable
(c) dict_fruit.add(dict_vegetable) (d) dict_fruit.merge(dict_vegetable)
16. Select the correct output of the code: 1
count=0
while(True):
if count%3 == 0:
print(count, end=” ”)
if (count>15):
break
count+=1
(a) 0 1 2 …. 15 (c) 0 3 6 9 12 15
(b)Infinite loop (d) 0 3 6 9 12
Given below are two statements for Question 17 and 18, one labelled as Assertion (A) and the other labelled as
Reason (R):
In the context of the two statements (A and R), which of the following is correct for each question?
a. Both(A) and (R) are true and (R) is a correct explanation of Assertion
b. Both (A) and (R) are true, but (R) is not the explanation of Assertion
c. A is True but R is False
d. A is false but R is True
You will write answers A or B or C or D
17. Assertion: Keywords can’t be used as an identifier. 1
Reason: Keywords are built-in. Their meaning has been fixed by python.
18. Assertion: Tuple is immutable datatype in python. 1
Reason: To modify a tuple, converting it to list is a work around.
Section B
19. Draw logic diagram for the following expression: Y=A’B’C’+ABC’+CBA’ 2
20. Define the following: a. Trojan horse b. Phishing 2
OR
Define the following: a. Cyber Trolls b. Cyber Bullying
21. Enumerate any two disability issues while teaching and using computers? 2
22. Rewrite the following code in python after removing all syntax error(s). Underline each correction 2
done in the code.
30=n
For i in range(0,n)
IF i%4==0:
print (i*4)
Else:
print (i+4)
23. (a) Given is a Python string declaration: 2
Str1="**JEE Examination 2023**"
Write the output of: print(Str1[::-1])
(b) Write the output of the code given below:
D1 ={"sname":"irya", "age": 2}
D1['age']=8
D1['address']= "MP"
print(D1.items())
24. Explain the following function with suitable example: 2
(i) random() (ii) randint()
OR
Explain the following function with suitable example:
(i) mean() (ii) mode()
25. Predict the output of the Python code given below: 2
T = (9,18,27,36,45,54)
L=list(T)
L1 = []
for i in L:
if i%6==0:
L1.append(i)
T1 = tuple(L1)
print(T1)
OR
Write a program to create a dictionary from a string.
Sample string: ‘w3resource’
Expected output: {'3': 1, 's': 1, 'r': 2, 'u': 1, 'w': 1, 'c': 1, 'e': 2, 'o': 1}
Section C
26. What are the benefits of e-waste Recycling? Mention any three benefits. 3
27. What are netiquettes? What are the appropriate usages of Social Networking sites? (Write four 3
points)
OR
What is data privacy? Websites that you visit collect what type of information about you?
28. Write a program to add and display twice of odd values from the list of Nums. 3
For example:
If the Nums contains [25,24,35,20,32,41]
The program should display
Twice of Odd Sum: 202
29. What is the difference between break and continue? Explain with the help of an example. 3
30. Write a program that divides a given tuple into two parts and prints two separate tuples 3
containing even and odd values of the given tuple.
For example:
If the given tuple contains (25,24,35,20,32,41) the output of program would be
Odd values: (25,35,41)
Even values:(24,20,32)
Section D
31. Consider the following code: 5
str=input("Enter a String")
while len(str)<=4:
if str[-1]=='z':
str=str[0:3]+'c'
elif 'a' in str:
str=str[0]+'b'
elif not int(str[0]):
str='1'+str[1:]+'z'
else:
str=str+'*'
print(str)
What will be the output produced if the input is:
i. 1bzz ii. 1a iii. 0xy iv. 0yz v. 5bc
32. Write a program in python to take input and store records of 5 student’s information consisting of 5
admission number, rollnumber, name and marks in a dictionary and then display information on
the basis of admission number to be taken as input from user.
OR
Write a program to input n numbers from the user. Store these numbers in a tuple. Print the
maximum and minimum number from this tuple.
33. Write a program to print the following pattern of n lines. Value of n taken as input. 5
Sample output:
Enter number of lines: 4
1=1
1+2=3
1+2+3=6
1+2+3+4=10
OR
Write a program to print the following patterns:
12345
1234
123
12
1
Section E
34. Convert the following numbers to the required base: 1+1+
a. (123)10 = (?)2 2
b. (11100111)2 = (?)10
c. (ABA)16 = (?)8 and (1345)8 = (?)16
OR
c. Write a Boolean expression for following logic circuit.

35. 4
Define following terms:
(i) IPR (ii) Plagiarism (iii) identity theft (iv) eavesdropping

You might also like