computer science term 1 question paper

  • School & Boards College Admission Govt Jobs Alert & Prep Exams Current Affairs General Knowledge Careers Videos Education News Quiz & Mock Tests Ebooks Results हिन्दी Jagran TV Jagran Play View All Categories
  • New Distance MBA
  • SRM University
  • Current Affairs
  • Web Stories
  • State Boards ICSE Board UP Board Bihar Board Rajasthan Board Maharashtra Board MP Board

CBSE Class 12 Computer Science Sample Paper (Term 1) 2021-22 Out: Download PDF Now & Prepare For CBSE 12th Computer Science Board Exam 2021-22

Check CBSE Class 12 Computer Science Sample Paper 2021-22 (PDF) & Marking Scheme. Download now and prepare for Term 1 CBSE Class 12 Computer Science 2021-22.

computer science term 1 question paper

Term 1 CBSE Class 12 Computer Science Sample Paper (PDF) is available here for download. It is based on the revised CBSE Syllabus and exam pattern. Term 1 CBSE Class 12 Computer Science board exam 2021-22 will have only multiple choice questions and with this sample paper students can easily understand the latest exam pattern.

9th, 10th, 11th, 12th - Revised & Reduced CBSE Syllabus Term 1 & 2 (Combined): Science, Commerce, Arts

CBSE Sample Paper (Term 1 - MCQ Based) for 10th & 12th Board Exam 2021-22: Check CBSE Marking Scheme & Answers - Download Now & Prepare For Term 1 Exam

CBSE Class 12th Board Exam 2021-2022: Term 1 Sample Paper, Marking Scheme, Revised Syllabus, NCERT & Other Important Resources For Preparation

Term 1 CBSE Class 12 Computer Science Sample Paper (PDF) 2021-22:

Maximum Marks: 35 Time Allowed: 90 Minutes

General Instructions:

- The question paper is divided into 3 Sections - A, B, and C.

- Section A consists of 25 Questions (1-25). Attempt any 20 questions.

- Section B consists of 24 Questions (26-49). Attempt any 20 questions.

- Section C consists of 6 case study based Questions (50-55). Attempt any 5 questions.

- All questions carry equal marks.

This section consists of 25 Questions (1 to 25). Attempt any 20 questions from this

section. Choose the best possible option.

1.  Find the invalid identifier from the following

2.  Consider the declaration L = 1, 'Python', '3.14'. What will be the data type of L?

c. dictionary

3.  Given an object obj1= (10, 20, 30, 40, 50, 60, 70, 80, 90). What will be the output of

print(obj1[3:7:2])?

a. (40,50,60,70,80)

b. (40,50,60,70)

c. (40,50,60)

4.  Which of the following statements is not correct?

a. If we try to read a text file that does not exist, an error occurs.

b. If we try to read a text file that does not exist, the file gets created.

c. If we try to write on a text file that does not exist, no error occurs.

d. If we try to write on a text file that does not exist, the file gets created.

5.  Which of the following options can be used to read the first line of a text file "Myfile.txt"?

a. myfile = open('Myfile.txt'); print(myfile.read(line))

b. myfile = open('Myfile.txt','r'); print(myfile.read(1))

c. myfile = open('Myfile.txt'); print(myfile.readline())

d. myfile = open('Myfile.txt'); print(myfile.readlines())

6.  Assume that the position of the file pointer is at the beginning of 3rd line in a text file. Which of the following options can be used to read all the remaining lines?

a. myfile.read(n-3)

b. myfile.read(n)

c. myfile.readline()

d. myfile.readlines()

7.  A text file "student.txt" is stored in the storage device. Identify the correct option out of the following options to open the file in read mode.

i. myfile = open('student.txt','a')

ii. myfile = open('student.txt','w')

iii. myfile = open('student.txt','r')

iv. myfile = open('student.txt')

b. both i and iv

c. both iii and iv

d. both i and iii 

For all the questions and answers, download the complete sample paper and marking scheme from the following links

CBSE Sample Paper 2021-22 (Term 1) for Class 12 Computer Science: New

Cbse marking scheme 2021-22 (term 1)pdf for class 12 computer science: new, related categories.

Jagran Play

Related Stories

Latest News

Result Updates

For more results, click here

Learn CBSE PYTHON

Term 1 Practice Questions Class 12 Computer Science 083

Last updated on December 15th, 2021 at 09:55 am

Session: 2021-22

In this section there are 55 practice questions released by cbse for class 12 computer science.  .

1. If the value of i is 5, the expression i != 6

a) has the value False

b) has the value True

c) sets the value of i to 6

d) sets the value of i to -5

Show Answer

2. The main difference between the modes ‘w’ and ‘a’ when opening a file in Python is that

a) ‘w’ is used for writing a file and ‘a’ for reading a file.

b) ‘w’ over-writes an existing file while ‘a’ writes to the end of the file.

c) ‘w’ is used with text files while ‘a’ is used with binary files.

d) ‘w’ gives an error if the file does not exist while ‘a’ creates it with no error.

3. Sushma gets the current date and time as a string x. Its value is “2021-10-30 12:49:44.216062”. Sushma prints the value of x[11:16] and gets “12:49”. Which of these will contain the date in yyyymm-dd format?

4. Python’s Pickle module is used for serializing and de-serializing any Python object structure and dumping / loading it to or from a binary file. Which of these is a case where it can be useful?

a) graphically representing the contents of any Python object on the screen

b) sorting a large list of numbers in ascending or descending order quickly

c) storing the data in any Python object for later reconstruction or use

d) compressing a large dataset so that it can be saved in less than a tenth of the space

5. Which of these Python data structures cannot have duplicate items and does not support ordering?

c) dictionary

6. Which of these Python data structures would be most suited to store the list of Indian states and

their corresponding capitals?

7. The statement p -= 5 has the same effect as which of these statements?

c) p = p – 5

d) p = 5 – p

8. Which output lines of the following program will print the same results?

tup1 = (10, 20, 30, 40, 50, 60, 70, 80, 90)

print(tup1[5:-1]) # 1

print(tup1[5]) # 2

print(tup1[5:]) # 3

print(tup1[-4:8]) # 4

a) (1) and (2)

b) (1) and (4)

c) (2) and (3)

d) (1), (3) and (4)

9. Every time Raj’s python program accesses the internet, it records the time and website accessed in a log file ‘internet_access.log’. This is one of the sample lines in the log file:

2021-09-01 10:03:00, www.google.com

Which of these lines would be used by the program to open the file?

a) logfile = open(‘internet_access.log’, ‘rb’)

b) logfile = open(‘internet_access.log’,’w’)

c) logfile = open(‘internet_access.log’, ‘a+’)

d) logfile = open(‘internet_access.log’, ‘ab’)

10. Which of these functions can be used to set a file’s current position?

11. When setting the current position of a file, the position CANNOT be set with reference to which of these?

a) the beginning of the file

b) the current file position

c) the middle of the file

d) the end of the file

12. If a function is defined by the line “def calculate(p, q=100, r=10):”, which of the following is true?

a) p is an optional parameter

b) q and r are optional parameters

c) q will always have value 100 in the function

d) the above line will cause a syntax error

13. Which of these points about the return statement is FALSE?

a) A return statement can only be used inside a function

b) A return statement can be used without any expression

c) When encountered, a return statement terminates a function

d) A function cannot have more than one return statements

14. A CSV file

a) is a text file

b) can store images

c) is a type of python program

d) is a Computer Software Validation file

15. Python’s abs() function returns the absolute value of number passed to it. For example abs(5) is equal to 5 and abs(-3.1) = 3.1. What will be the value of  abs (3 – abs(-10))

16. Which of these statements about text and binary files is true?

a) A text file has the same number of characters in each line unlike a binary file.

b) A text file has a special End Of File character unlike a binary file.

c) An HTML file is an example of a text file while a CSV file is an example of a binary file.

d) Every character in a text file can occur in a binary file but the reverse is not true.

Read the below and answer questions 17 and 18:

The exponentiation operator in Python (**) has higher precedence than the division (/) and multiplication (*)

operators, meaning that ** will be evaluated before / and * in an expression. Operators / and * have the same

precedence.

Further, ** evaluates from right to left, meaning that if an expression has multiple operators of the same

precedence of **, the operator on the right will be evaluated before the operator on the left. On the other

hand, / and * evaluate from left to right.

17. Which operator will be evaluated first in this expression?

6 * 3 ** 2 ** 2 / 2

b) the first ** from the left

c) the second ** from the left

18. What will be the value of this expression:

4 / 2 ** 3 * 2

19. Which of these statements about for and while loops in Python is TRUE?

a) A for loop usually run a given number of times; a while loop runs while a condition is met.

b) Statements in a for loop are always run at least once; those in a while loop may never be run.

c) A for loop cannot contain another for loop; a while loop can contain another while loop.

d) A for loop always has to have a loop counter; a while loop never uses a loop counter.

20. How does a Python program know where a FOR block ENDS?

a) when it finds a closing bracket (}) character

b) when it finds the keyword ENDFOR

c) when it finds a line with matching indentation

d) when it finds a colon (:) character

21. Sonal wrote the following program print_students.py to print the number of students in her class.

section = “A”

students = 30

print (“There are”, students, “students in class”, class, section)

However, when she ran the program, she got the following output:

File “.\print_students.py”, line 1

SyntaxError: invalid syntax

Which of these changes will make the program run without error?

a) writing ‘==’ instead of ‘=’ (correct assignment operator)

b) writing “5” instead of 5 (variable should be a string)

c) changing the variable name (‘class’ is a reserved word)

d) adding a colon (‘:’) at the end of the statement (begin indented block)

Read the following and answer questions 22 and 23:

A log file records the time, userid, record number and number of bytes read from a certain database. Each of

the fields uses a fixed number of bytes. The last 3 lines of the file were as follows at some time:

2021-08-09 10:21:20::0014::06733628::00001024

2021-08-09 10:22:03::0443::06384626::00001024

2021-08-09 10:22:52::0014::00549374::00001024

22. What is the inter-field delimiter used by the file?

a) Comma (,)

b) Colon (:)

c) Double-colon(::)

d) Hyphen (-)

23. Which of these lines will return the latest entry from the file? (Assume the file handler is file and SEEK_START and SEEK_END represent the offsets from the beginning and end of the file respectively)

a) file.seek(-45, SEEK_END)

b) file.seek(45, SEEK_END)

c) file.seek(135, SEEK_START)

d) file.seek(-135, SEEK_START)

24. The advantage of opening a file using the with clause instead of the open() function is that:

a) the access mode does not have to be specified

b) the file does not have to explicitly be closed

c) the filename does not have to be specified

d) the file gets opened for reading and writing

25. What should appear in the place of the ‘?’ symbol in the table below?

mystring = “I love Python”

Expression Value

mystring[-1] n

mystring[-3:] hon

mystring[5:-4] ?

26. Identify the error in the program below:

import pickle

print(“The data that were stored in file are: “)

fileobject=open(“mydata.dat”,”r”)

objectvar=pickle.load(fileobject)

fileobject.close()

print(objectvar)

a) The 3rd line should be fileobject=open(“mydata.dat”,”rb”)

b) The 4th line should be objectvar=pickle.dump(fileobject)

c) The fileobject.close() statement should come AFTER the print(objectvar) statement

d) The last line should be print(fileobject)

27. What will be the output of this program?

r = “”

s = “None”

if (p == q):

print (“None is the same as 0”)

elif (p == r):

print (“None is the same as empty string”)

elif (p == s):

print (“None is the same as the string ‘None'”)

print (“None of the above”)

a) None is the same as 0

b) None is the same as empty string

c) None is the same as the string ‘None’

d) None of the above

In Python, lists are mutable and tuples immutable. See the program and answer questions 28 and 29:

list_items = [“Sachin”, “Dravid”, “Kapil”, “Dhoni”, “Sourav”]

tuple_items = (“Sunday”, “Monday”, “Tuesday”, “Wednesday”, “Thursday”)

list_items[4] = “Harbhajan”

tuple_items[4] = “Friday”

print(list_items[4], tuple_items[4])

28. In python, the term mutable means:

a) memory-efficient

c) changeable

d) sequential

29. What will be the output of this program?

a) Sourav Thursday

b) Harbhajan Friday

c) An error will be reported on line 3

d) An error will be reported on line 4

30. What will be the output of this program? (All quotes shown are double quotes)

message = “My favourite movie is “3 Idiots””

print(message[23:])

a) 3 Idiots

b) 3 Idiots””

c) Syntax error on line 1

d) Syntax error on line 2

31. What will be the output of this program?

txt = “How are you, Ravi?”

x = txt.find(“,”)

y = txt.find(“?”)

print(txt[x+2:y])

a) How are you Ravi

b) How are you

32. What will be the output of this program?

n = “1”

print (str(m) + n)

d) Syntax Error

33. What will be the output of this Python line?

print(“This is Delhi. # Delhi is the capital of India.”) # This is a comment.

a) This is Delhi.

b) This is Delhi. # Delhi is the capital of India. # This is a comment.

c) This is Delhi. # Delhi is the capital of India.

d) This is Delhi. This is a comment.

34. What will be the output of this program?

p = “12”

q = “5”

print(p+q, r+s)

Study the following program which has an unintended error and answer questions 35 and 36. [Recall that range (m, n) is all integers from m to n-1]

while (i <= 10): # For every number i from 1 to 10

sum = 0 # Set sum to 0

for x in range(1,i+1):

sum += x # Add every number from 1 to i

print(i, sum) # print the result

35. What is the programmer trying to do in the program?

a) Print all the odd numbers from 1 to 10

b) Print the total of all numbers from 1 to 10

c) For each number till 10, print the sum of numbers between 1 and the number.

d) For each number till 10, print the sum of the number and its previous number

36. Identify the error in the program

a) sum = 0 should be BEFORE the while statement

b) The range should be from 0 (not 1) to i + 1

c) i = i + 1 should be added after the print statement

d) There is no error in the program

37. What will this program output? [Recall that 5 % 3 = 2, 10 % 2 = 0 and 7 % 3 = 1]

for i in range(0, 100):

if (i % 3 == 0) or (i % 4 == 0):

a) All numbers less than 100 that are multiples of 12

b) All numbers less than 100 that are NOT multiples of 12

c) All numbers less than 100 that are multiples of 3 or 4

d) All numbers less than 100 that are NOT multiples of 3 or 4

38. See the following program snippet which lists out the names of all students:

student_list = [“Ravi”, “Sunita”, “Gopal”, “Salma”, “Lily”]

number_of_students = len(student_list)

while i <= number_of_students:

print(student_list[i])

When it was run, it gave the following error on the last line

IndexError: list index out of range

Which of these will correct the error?

a) Replacing i = 0 with i = 1

b) Replacing i <= number_of_students with i < number_of_students

c) Replacing student_list[i] with student_list[i-1]

d) Replacing i += 1 with i = i + 1

39. See the code below using Python’s pickle module to STORE data into file ‘Latlong data’:

data = [‘New Delhi’, ‘28.6139° N’, ‘77.2090° E’]

file = open(‘Latlong data’, (1) )

pickle. (2) (data, file)

file.close()

What, respectively, should appear in blanks (1) and (2)?

a) ‘rb’ and dump

b) ‘wb’ and dump

c) ‘rb’ and load

d) ‘wb’ and load

40. What will be the value of p and r at the end of this program?

r = p – r

p = p – r

print (p, r)

a) p = 40, r = 40

b) p = 50, r = 50

c) p = 50, r = 40

d) p = 40, r = 50

Read the following and answer questions 41 and 42.

File ‘RoadNotTaken.txt’ has these lines:

Two roads diverged in a wood, and I—

I took the one less traveled by,

And that has made all the difference.

The following code opens this file:

fp = open(“RoadNotTaken.txt”, ‘r’)

poem = fp.readlines()

print (len(poem))

41. What is the data type of the variable poem?

d) dictionary

42. What will be the output of the above program?

43. The score of a student in a test is stored as a Python tuple. The test had 3 questions, with some questions having subparts whose scores are recorded separately.

score = (6, (5, (2, 1), 8), (4, 3, (1, 3, 2)))

print (score[2][2])

What will be the output of this program snippet?

a) (1, 3, 2)

44. What will be the output of the program snippet below?

def phone_with_country_code (phone_number, country=”India”):

country_codes = {“India”: “+91”, “Singapore”: “+65”, “United States”: “+1”}

if country not in country_codes:

return(“Country is not supported”)

return (country_codes[country] + ” ” + phone_number)

print(phone_with_country_code(“9876500001”), “|”, phone_with_country_code(“203-607-

1232″, “United States”))

a) India 9876500001 | United States 203-607-1232

b) +91 9876500001 | +1 203-607-1232

c) 9876500001 | +1 203-607-1232

d) 9876500001 | United States 203-607-1232

45. The choice() method of Python’s random module returns a random element from a list. See the program below.

import random

suits = (“Hearts”, “Clubs”, “Diamonds”, “Spades”)

cards = (“Ace”, “2”, “3”, “4”, “5”, “6”, “7”, “8”, “9”, “Jack”, “Queen”, “King”)

card_picked = random.choice(cards) + ” of ” + random.choice(suits)

print(card_picked)

Which of these COULD be an output of this program?

a) Hearts Ace

b) Diamonds of Queen

c) 7 of King

d) Jack of Clubs

Hide Answer'> Show Answer

46. Study the manual entry for the split() method given below.

split (sep=None, maxsplit=- 1)

Return a list of the words in the string, using sep as the delimiter string. If maxsplit is

given, at most maxsplit splits are done (thus, the list will have at most maxsplit+1

elements). If maxsplit is not specified or -1, all possible splits are made.

What will be the output of the program given below?

string = “2021-08-09 10:22:03::0443::06384626::00001024”

parts = string.split(“::”, 2)

print(parts)

a) [‘2021-08-09 10:22:03’, ‘0443::06384626::00001024’]

b) [‘2021-08-09 10′, ’22’, ’03::0443::06384626::00001024′]

c) [‘2021-08-09 10:22:03’, ‘0443’, ‘06384626::00001024’]

d) [‘2021-08-09 10:22:03’, ‘0443’, ‘06384626’, ‘00001024’]

47. What will be the output of this program?

def change_values():

change_values()

print(p, q)

Read the information below and answer questions 48 and 49

In Python and other languages, a ‘regular expression’ is a pattern of characters in which some characters have a special meaning. Specifically:

ab* could represent ‘a’, ‘ab’, ‘abb’, ‘abbb’ and so on but NOT ‘bbb’ or ‘aba’. (Rules 2 and 3)

star[ekt] could represent ‘stare’, ‘stark’ or ‘start’ but NOT ‘star’ or ‘are’ (Rules 1 and 3)

a[bcd]* could represent ‘a’, ‘ab’, ‘abc’, ‘acdd’ and so on but not ‘aba’ or ‘aa’ (Rules 1-3)

48. Which of these would NOT be represented by [ab]c*?

49. A factory codes its products using a series of letters and numbers. Each code starts with 10, 11 or 12 (representing different production locations), followed by an S, M or L (for Small, Medium or  Large), followed by a 4 digit number. Which of the following would represent this?

a) [101112][SML]1234

b) 1[012]SML[123456789]

c) 1[012][SML][0123456789][0123456789][0123456789][0123456789]

d) [012][012][SML][0123456789][0123456789][0123456789][0123456789]

Nagesh and Simran have written this Python program. It asks for a student’s name and roll no. If both match the records in a CSV file, it displays the student’s English, Maths and Computer Science marks.

The marks data is stored in a file student_marks.csv whose first 3 rows are as shown below:

Name,Roll No,Comments,English,Maths,Computer Science

Nagesh Rao,12342,,85,92,96

Simran Shah,14324,Absent for English test,A,87,99

Ravi Gulati,43234,,76,97,81

Study the program and answer the questions that follow:

print(“Enter your name and roll number to see your subject marks…\n”)

name = input(“Enter Name exactly as in Hall Ticket: “)

rollno = input(“Enter Roll No.: “)

with open(‘student_marks.csv’ (1) ) as csv_file:

csv_reader = csv.reader(csv_file, delimiter=’,’)

line_count = 0

match_found = False

for row in csv_reader:

line_count += 1

if line_count == 1:

if row[0].lower() == name.lower() and row[1] == rollno:

match_found = True

eng_marks = row[3]

maths_marks = row[4]

cs_marks = row[5]

print(“\n”+row[0]+”‘s marks are:\nEnglish:”,eng_marks)

print(“Maths:”, maths_marks, “\nComp Sc:”, cs_marks,”\n\nThank you!”)

if match_found == False:

print (“\nNo matching name and roll number found. Please check and re-enter”)

50. What mode of opening should come in blank 1?

d) <nothing is needed – r is default>

51. What statements, respectively, should come in blanks 2 and 3? Choose the BEST answer.

a) continue and continue

b) break and break

c) break and continue

d) continue and break

52. What is the data type of the variable match_found?

53. The file student_marks.csv contains a comment field in every row. Which of these comments may cause the program to fail to read that row properly?

a) New student who joined school in Dec

b) School Topper in English!

c) Absent for English, Maths papers

d) <empty string>

54. Which of these is an error in the program?

a) line_count should be initialised to 1 (not 0) in line 9.

b) The last 2 lines should have one less indentation.

c) The file opened for reading is not closed using close().

d) None of the above.

55. For the names shown in the sample data, assuming the roll number is entered correctly, which of these will NOT find a match?

a) Nagesh Rao

c) Ravi Gulati

d) Simran shah

computer science term 1 question paper

A passionate blogger and author of this website having 10+ years of experience in education sector as a CS faculty. His expertise in Python, C++, Java, MySQL, MongoDB and Artificial intelligence. […]

Careerindia

computer science term 1 question paper

CBSE Class 12 COMPUTER SCIENCE Question Papers

Computer Science is an important subject which has a lot scope and career opportunities with higher education. In order to cater to the need of the present day scenario, the CBSE board has designed the syllabus keeping in consideration students' learning abilities along with the present day requirements.

Question papers for Computer Science board exams are prepared with utmost care to test a student's knowledge of the subject. Question papers are an important part for exam preparation. Students should solve previous years question papers before appearing for their final exams to get familiar with the CBSE question paper pattern and marking scheme for Computer Science. Understanding this will help students prepare better and score well in the board examination.

facebookview

computer science term 1 question paper

Skip to main content

Question Papers for Compartment Examination 2022

Question paper for class xii (compartment examination 2022), question paper for class x (compartment examination 2022), question papers for examination 2022, question paper for class xii examination 2022), question paper for class x examination 2022), question papers for compartment examination 2021, question paper for class xii (compartment examination 2021), question paper for class x (compartment examination 2021), question papers for compartment examination 2020, question paper for class xii (compartment examination 2020), question paper for class x (compartment examination 2020), question paper for examination 2020, question paper for class xii (examination 2020), question paper for class x (examination 2020), question paper for examination 2019, question paper for class xii (examination 2019), question paper for class x (examination 2019), question papers for compartment examination 2019, question paper for class xii (compartment examination 2019), question paper for class x (compartment examination 2019), question paper for examination 2018, question paper for class xii (examination 2018), question paper for class x (board examination 2018), question papers for compartment examination 2018, question paper for class xii (compartment examination 2018), question paper for class x (compartment examination 2018), question paper for examination 2017, class xii all india scheme, question paper for class xii 2017 of all india scheme, class xii delhi scheme, question paper for class xii 2017 of delhi scheme, class xii foreign, question paper for class xii 2017 of foreign, class x all india scheme, question paper for class x 2017 of all india scheme, class x delhi scheme, question paper for class x 2017 of delhi scheme, class x foreign, question paper for class x 2017 of foreign, class x nsqf, question paper for class x 2017 of nsqf, question papers for compartment examination 2017, question paper for class xii (iop examination 2017) of all india scheme, question paper for class xii (iop examination 2017) of delhi scheme, question paper for class x (iop examination 2017) of all india scheme, question paper for class x (iop examination 2017) of delhi scheme, question paper for class x (iop examination 2017) of nsqf, question paper for examination 2016, question paper for class xii 2016 of all india scheme, question paper for class xii 2016 of delhi scheme, question paper for class xii 2016 of foreign, question paper for class x 2016 of all india scheme, question paper for class x 2016 of delhi scheme, question paper for class x 2016 of foreign, question paper for class x 2016 of nsqf, question paper for examination 2015, question paper for exam 2015 (without re-evaluation subjects) class xii, class xii re-evaluation, question paper for exam 2015 (re-evaluation subjects) class xii, question paper for exam 2015 class x, question papers for compartment examination 2015, question paper for exam 2015 (comptt) class xii, question paper for exam 2015 (comptt), (re-evaluation subjects) class xii, question papers for examination 2013, question papers of board examinations 2013 (class xii), question papers of board examinations 2013 (class x), question papers for compartment examination 2013, question papers of compartment examinations (class xii), 2013, question papers of compartment examinations (class x), 2013.

CBSE Class 12 Computer Science Sample Paper

CBSE Class 12 Computer Science Sample Papers 2022 For Term 1 & Term 2 | Download PDF

CBSE Class 12 Computer Science Sample Paper 2022 For Term 1 & Term 2 : Download the Term 1 & Term 2 CBSE Class 12 Computer Science Sample Paper (PDF) here. Only multiple choice questions (MCQs) will be on the CBSE Class 12 Computer Science board exam in 2022 For Term 1 & Term 2, and students can easily comprehend the latest exam pattern with this sample paper. In this article, we are providing you with CBSE C omputer Science Class 12 Sample Paper 2022 with solutions from the academic year 2015-2016 to 2021-22.

Table of Contents

CBSE Class 12 Computer Science Sample Papers 2022 For Term 2

CBSE has released 12th Computer Science Term 2 Sample Question Papers 2022. You can download CBSE Class 12 Computer Science Term 2 Sample Papers 2022 For Term 2 & answer key from below. 

CBSE Computer Science Class 12 Sample Papers for Term 1 2022

You can give a finishing touch to their preparation by practicing 12th CBSE CS Sample Papers regularly. Also, you can analyze the exam preparation by going through the marking scheme and answer key. Accordingly, you can work on your weaker sections.

Download Term-1 CBSE 12th Computer Science Sample Paper 2022 PDF

You solve questions as much as possible, whether it is previous year’s papers, sample question papers, or exercise questions to score a better mark in the Class 12 Computer Science exam. Along with sample papers, you can also get access to Class 12 CS Marking Scheme. 

Official Year-Wise CBSE Class 12 Computer Science Sample Papers With Solutions

Here you can download the year-wise sample papers or Model Papers for Class 12 Computer Science:

You can also practice more sample papers apart from the official sample papers. These papers are created by experts as per the CBSE Class 12 curriculum.

You can also download CS Sample Papers Class 12 2021 from Oswaal for Better Preparations.

Oswaal CBSE Class 12 Computer Science Sample Papers

Oswaal C omputer Science Sample Paper Class 12 2022 For Term 1 & Term 2 have covered the questions from the last ten years and all the important topics.

You can easily download the Oswaal Computer Science Sample Papers for Class 12 by clicking the link given below and start solving them.

Other Important Links Related To CBSE Class 12 Computer Science

You should have the following study materials to boost your exam preparation for the Class 12 Computer Science exam. Click on the link to access the study materials.

We have covered a detailed guide on CBSE Class 12 Computer Science Sample Papers 2022 For Term 1 & Term 2. Feel free to ask any questions related to the 12th Computer Science in the comment section below.

FAQs On CBSE Class 12 Computer Science Sample Papers 2022 For Term 1 & Term 2

Here you can check FAQs On CBSE Class 12 Computer Science Sample Papers 2022 For Term 1 & Term 2.

Is CBSE Board for class 12 issue a sample paper for Computer Science?

Yes, CBSE issues a sample paper of Computer Science, released on its official website.

What is the benefit of CBSE Computer Science Sample Paper 2021-22 Class 12?

The benefit of CBSE 12th Computer Science Sample Papers are: 1. Improves Speed and Accuracy 2. Sample papers help you analyze your strengths and weaknesses so that you can focus on weaker sections. 3. Helps in Revision of 12th Computer Science Syllabus 4. Practicing CBSE sample papers gives you an idea about the type of questions that will be asked in the exam and so you can prepare well enough.

How can I download Class 12 Computer Science sample papers?

Download CBSE Sample Paper 2021 Class 12 Computer Science with Solutions PDF: HERE .

Is there any other sample paper for class 12 Computer Science apart from CBSE?

Yes, Arihant Publication’s-15 Sample Question Papers for Class 12 Computer Science apart from CBSE.

Is Score Plus question bank for Computer Science Sample Paper useful for class 12?

Yes, Score Plus question bank has Sample Paper and Model Test Papers in Computer Science for class XII As per Reduced Syllabus for 2021 exam by Gurmeet Singh.

What are the different class 12 Computer Science Sample Papers for CBSE?

CBSE Class 12 Computer Science Sample Papers from the different publishers: Oswaal publishers, Arihant, Perfect 15 Sample Papers by Arya Publications, etc.

How can Sample Paper be useful for class 12 Computer Science?

Class 12 CS sample papers help you analyze your strengths and weaknesses so that you can focus on weaker sections.

Where can I get Class 12th Computer Science Sample Papers in PDF?

You can get Class 12th Computer Science Sample Papers in PDF from the above blog.

Leave a Comment Cancel reply

Save my name, email, and website in this browser for the next time I comment.

IMAGES

  1. Dlp Science Year 1 Exam Paper / Dlp Science Year 2 Exam Paper : The contents are creatively

    computer science term 1 question paper

  2. CBSE Class 11 Computer Science Question Paper Set P Solved

    computer science term 1 question paper

  3. 12th Computer Science Question Paper pdf

    computer science term 1 question paper

  4. MTSE Question Papers For Class 9

    computer science term 1 question paper

  5. ISC Class 12 Sample Paper 2020

    computer science term 1 question paper

  6. CBSE Class 11 Computer Science Question Paper Set U Solved

    computer science term 1 question paper

VIDEO

  1. 11 Second Mid Term Computer Science Question Paper Coimbatore District 2022

  2. Computer Paper Final Solution

  3. SOCIAL SCIENCE TOP 120 MOST IMPORTANT QUESTIONS FOR BOARD✅OBJECTIVE + SUBJECTIVE + MAP QUESTIONS

  4. Class 10th Science mid term 1 question paper 2022-23 //Question paper class 10 science

  5. 8th quarterly question paper 2022

  6. CBSE Term 2 Computer Science Sample Paper Class 12

COMMENTS

  1. CBSE 12th Computer Science Question Paper 2021-22 Term 1 (PDF ...

    CBSE 12th Computer Science Board Exam 2021-22 (Term 1): Snapshot of Question Paper This section consists of 25 Questions (1 to 25). Attempt any 20 questions from this section. Choose...

  2. CBSE 12th Computer Science Sample Paper (Term 1) 2021-22 PDF ...

    Term 1 CBSE Class 12 Computer Science Sample Paper (PDF) 2021-22: Maximum Marks: 35 Time Allowed: 90 Minutes General Instructions: - The question paper is divided into 3 Sections - A, B,...

  3. (Solved)Term 1 Sample Paper Computer Science 2021-22 Class 12

    Term 1 Sample Paper Computer Science 2021-22 for Class 12 Class: 12 Computer Science (Code 083) (Theory: Term-1) Maximum Marks: 35/Time Allowed: 90 Minutes General Instructions: The question paper is divided into 3 Sections – A, B and Section A, consist of 25 Questions (1-25). Attempt any 20 Section B, consist of 24 Questions (26-49).

  4. Term 1 Practice Questions Class 12 Computer Science 083

    Term 1 Practice Questions Class 12 Computer Science 083 Session: 2021-22 In this section there are 55 Practice Questions released by CBSE for Class 12 Computer Science. 1. If the value of i is 5, the expression i != 6 a) has the value False b) has the value True c) sets the value of i to 6 d) sets the value of i to -5 Show Answer 2.

  5. CBSE Class 12 COMPUTER SCIENCE Question Papers

    Year. Action. CBSE Class 12 (Term-2) Computer Science Marking Scheme Question Paper 2021-22.pdf. 2022. View. CBSE Class 12 (Term-1) Computer Science Marking Scheme Question Paper 2021-22.pdf. 2022. View. CBSE Class 12 Computer Science Marking Scheme Question Paper 2022-23.pdf.

  6. CBSE - Central Board of Secondary Education

    1.31 MB: COMPUTER SCIENCE : Download: 477 KB: DESIGN : Download: 1.16 MB: ECONOMICS : Download: ... Question Paper for Class XII (Compartment Examination 2020 ...

  7. CBSE Class 12 Computer Science Sample Papers 2022 For Term 1 ...

    CBSE Computer Science Class 12 Sample Papers for Term 1 2022 You can give a finishing touch to their preparation by practicing 12th CBSE CS Sample Papers regularly. Also, you can analyze the exam preparation by going through the marking scheme and answer key. Accordingly, you can work on your weaker sections.

  8. Sample Question Paper COMPUTER SCIENCE ... - cbseacademic.nic.in

    [1] Sample Question Paper COMPUTER SCIENCE (Code: 083) Maximum Marks: 35 Time: 2 hours 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.