You are on page 1of 3

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION

SESSION ENDING EXAMINATION 2019-20


CLASS XI - Computer Science (083)

BLUE PRINT

S. No Typology of Questions Very Short Short Long Long Total


Short Answer-I Answer -II Answer Answer Marks
Answer (SA-I) (SA-II) (L.A.) (L.A.)
(VSA) (2 marks) (3 marks) (4marks) (6marks)
(1 mark)

1 CSO 3 2 1 – -- 10

2 PCT - Fundamentals 2 3 - -- 8
PCT - Control Statements 1 2 1 1 -- 12
PCT - Strings, Lists, Tuples, 1 2 2 1 -- 15
Dictionary
3 Data Management 3 3 -- -- 1 15

4 Society, Law and Ethics, Cyber 2 4 -- -- 10


Safety

Total Marks 12 32 12 8 6 70

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION


SESSION ENDING EXAMINATION 2019-20
CLASS XI - Computer Science (083)

Time: 3 hours Maximum marks: 70


Instructions:
i) Programming Language: PYTHON.
ii)All Questions are compulsory within each section.

Q1.(a) What is an Interpreter? Name any one programming language using an interpreter. [1]
(b) What is an Operating System? [1]
(c) What is Cloud Computing? [1]
(d) Design the logic circuit for A.B’.C’+A’.B.C’+A.B.C [2]
(e) State and prove Absorption Law. [2]
(f) Do the following conversions: [3]
(i) (45)10 to binary (ii) (7610)8 to hexadecimal (iii) (10001010)2 to octal

Q2.(a) What do you understand byDynamic typing? . [1]


(b) What is None? [1]
(c) Identify the invalid identifies. State reason. [2]
99Acres, First flight, Cost@2, five-times
(d)Write a python code accept two numbers and interchange their values. [2]
(e) Find the values of (i) -15%4 (ii) -15//4 (iii) 15**3**0 (iv) 15&4 [2]

Q3. (a) What is the use of range( )? [1]


(b) Explain with example the difference between break and continue. [2]
(c) Draw a flowchart to check if a number is odd or even [2]
(d) Write a program to check if a number is prime or not [3]
(e) Predict the output [4]
(i) for x in range(1,10):
pass
print(x)
(ii) for a in range (1,5) :
for b in range(a):
print(“*”,end=” “)
print( )

Q4. (a) What is an Exception? [1]


(b) Predict the output of the following [2]
msg= ‘Good Morning’
print(msg*2)
print(msg[1:6:2])
print(msg[-7:-3:2]+’.’)
print(msg.replace (“o”, ‘Q’))
(c) What is the difference between a List and a Tuple? Explain with an example. [2]
(d) Write a program to check if a given string is palindrome or not [3]
(e) Write a program to create a dictionary from a string with the letters as keys and frequency
oflettersas values. OR [3]
Write a program to sort a list using bubble sort.
(f) Answer the following [4]
(i) Which function returns the ASCII code of a character?
(ii) What is the difference between append( ) and extend?
(iii) Why does tup + (3) generate error where,tup = (1,2,3) ?
(iv) Dictionary is not a sequence? Justify.

Q5. (a) State two benefits of using DBMS. [1]


(b) What is a Primary key? [1]
(c) For a table containing 100 students records having their Name, Roll, Marks in 3 subjects,
Average marks, what is the Degree and Cardinality? [1]
(d) What is the difference between char and varchar? [2]
(e) Create a table DEPT for the given structure [2]
Field Name Field Type Constraint
DEPTNO Integer NOT NULL PRIMARY KEY
DNAME Varchar(14) NOT NULL
LOC Varchar(13)
(f) What is a constraint? What is the use of default and check constraints? [2]
(g) Write SQL statements for (i) to (iv) and give the output for (v) to (viii) [6]
EMP
No. Name Age Department DOJ Salary Gender
1 Amrit 34 Computer 2007-02-10 12000 M
2 Bina 31 History 2008-03-24 20000 F
3 Sandeep 32 Maths 2009-02-25 14000 M
4 Rekha 45 History 2007-04-15 20000 F
5 Dinesh 35 Computer 2007-05-17 21000 M
(i) To list the male teacher who are in Mathsdepartment.
(ii) To display Name, Salary, Age of all Femaleteachers.
(iii) Update the Salary of all the employees byRs. 1000.
(iv) To Insert a new record in table Teacher with the following data : 9,
‘Raja’, 23, ‘Hindi’, ‘2005-08-19’,12675,‘M’
(v) SELECT DISTINCT Department FROM EMP
(vi) SELECT * FROM EMP WHERE Gender=”F” ORDER BY Name DESC
(vii) SELECT SUM(Salary) FROM EMP GROUP BY Gender
(viii) SELECT * FROM EMP WHERE Department LIKE “C%”

Q6. (a) What is digital footprint? [1]


(b) What is VPN? [1]
(c)What is Cyber Bullying and Cyber Stalking? [2]
(d) Sate any two method to ensure Cyber Safety [2]
(e) What are cookies? What are the different types of cookies? [2]
(f) State some usage rules for the use of Social media [2]

You might also like