Students can access the CBSE Sample Papers for Class 11 Computer Science with Solutions and marking scheme Term 2 Set 4 will help students in understanding the difficulty level of the exam.

CBSE Sample Papers for Class 11 Informatics Practices Term 2 Set 4 for Practice

Time: 2 Hours
Maximum Marks:35

General Instructions:

  • The question paper is divided into 3 sections -A, B and C
  • Section A, consists of 7 questions (1-7). Each question carries 2 marks.
  • Section B, consists of 3 questions (8-10). Each question carries 3 marks.
  • Section C, consists of 3 questions (11-13). Each question carries 4 marks.
  • Internal choices have been given for question numbers 7, 8 and 12.

Section – A [2 marks each]

Question 1.
Predict the output of the following code : a = [5,9, 7, 6, -9, -7, 0,3,5]

Question 2.
(i) Write the output for the following codes :
A = {10 :1000, 20 : 2000, 30 : 3000, 40 : 4000,50 : 5000}
print (A. items ())
print (A. keys ())
print (A. values ())
(ii) What is cyber bullying?

Question 3.
Write a program to print the worker’s information (Name age, salary) in records format.

Question 4.
(i) What do you mean by Intellectual Property?
(ii) What is spyware?

Question 5.
Predict the output import math
print (math, sqrt (289))
print (math, ceil (78.6))
print (math, floor (98.55))
print (pow (3,4))

CBSE Sample Papers for Class 11 Computer Science Term 2 Set 4 for Practice

Question 6.
(i) If you are getting negative, demeaning messages on social networking profile, mails from many unknown people, what do you think is happening? What actions you should take to stop them?
(ii) Why cyber safety is needed?

Question 7.
How can be the members of a list accessed in python?
OR
Write a program to remove the element ’25’ from the given tuple, tuplel = (5,10,15,20,25, 30)

Section – B [3 marks each]

Question 8.
How can you make your digital footprint positive?
OR
When and where to follow netiquette?

Question 9.
Consider the following tuples that store coordinates of a geometric figure each. Write a python code to generate a new tuple containing coordinates obtained by adding the corresponding coordinates of both the figures.
tup1 = ((1,3),(4,5),(2,9),(1.10))
tup2 = ((6,7),(3,9),(l,l),(7,3))

Question 10.
What are different types of threats to computer security?

Section – C [4 marks each]

Question 11.
A list Divisibility contains the following elements: 9, 35,4,19,55,12, 55, 36
Write a program to swap the content with next value divisible by 5 so that the resultant list will look like
9,4,35,19,12,55, 36, 55

Question 12.
(i) What is cyber-crime? How can you report it?
OR
What should we do if we need to provide crucial information online?

(ii) How do websites track you online?

CBSE Sample Papers for Class 11 Computer Science Term 2 Set 4 for Practice

Question 13.
Read the case study given below and attempt any 4 sub-questions (out of 5). Each sub-question carries 1 mark.
Tuples are immutable python sequences, i.e. you cannot change elements of a tuple in place. Tuples’ items are indexed. Tuples store a reference at each index. Tuples can be indexed sliced and its individual items can be indexed, len (T) returns count of tuple elements. Tuple manipulations functions are: len (), max (), min () and tuple ().
(i) What is the type of Tuple in Python?
(ii) Which method is used to return count of tuple elements?
(iii) What are the functions of Tuple?
(iv) Which type of brackets is used to define the tuple?
(v) Which one is immutable Python sequence?