aglasem.com
Schools Admission Mock Test Playground
ClassChoose class
StateSelect state

ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2

Get here Indian School Certificate (ISC) Sample Paper 2020 for Class 12 Computer Science Paper 2 More Detail
ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 - Page 1 of 4

Finished viewing? Save it for later —

Download ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 (PDF · 4 pages)
Downloaded 24 times

About ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2

ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 is available here for free download. Published by CISCE for Class 12, this sample paper can be viewed online or downloaded as a PDF (4 pages). Candidates preparing for Class 12 can use ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 to understand the exam pattern, the type of questions asked, and the overall difficulty level.

Frequently Asked Questions

How can I download ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2?

Open this page and click the Download button to save ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 as a PDF. It is completely free on AglaSem Docs.

Is ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 free to download?

Yes. ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 can be viewed online and downloaded as a PDF free of cost on AglaSem Docs.

How many pages does ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 have?

ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 contains 4 pages, which you can read online or download together as a single PDF.

Where can I find more Class 12 study material?

You can find more Class 12 question papers, sample papers, syllabus, and answer keys on AglaSem Docs.

ISC Class 12 Specimen Paper 2020 for Computer Science Paper 2 – Text

Read the full text of this sample paper below — useful to quickly search, copy and reference the content online without downloading the PDF.

📄 View text version (4 pages)

Page 1

COMPUTER SCIENCE
Paper – 2
(PRACTICAL)
(Maximum Marks: 30)
(Time allowed: Three hours)
(Candidates are allowed additional 15 minutes for only reading the paper.
They must NOT start writing during this time.)
------------------------------------------------------------------------------------------------------------------------
The total time to be spent on the Planning session and Examination session is Three hours.
Planning session: 90 minutes
Examination session: 90 minutes
Note: Candidates are to be permitted to proceed to the Examination Session only after the
90 minutes of the Planning Session are over.
----------------------------------------------------------------------------------------------------------------------------
This paper consists of three problems from which candidates are required to attempt any one problem.

Candidates are expected to do the following:

1. Write an algorithm for the selected problem. [3]
(Algorithm should be expressed clearly using any standard scheme such as pseudo
code or in steps which are simple enough to be obviously computable)

2. Write a program in JAVA language. The program should follow the algorithm and [7]
should be logically and syntactically correct. Document the program using
mnemonic names / comments, identifying and clearly describing the choice of data
types and meaning of variables.

3. Code / Type the program on the computer and get a print out (Hard Copy). [2]
Typically, this should be a program that compiles and runs correctly.

4. Test run the program on the computer using the given sample data and get a print [3]
out of the output in the format specified in the problem.

In addition to the above, the practical file of the candidate containing the practical work
related to programming assignments done during the year is to be evaluated as follows:

•Programming assignments done throughout the year (by the Teacher) [10]
•Programming assignments done throughout the year (by the Visiting Examiner) [5]

-------------------------------------------------------------------------------------------------------------------------

1

Page 2

Solve any one of the following Problems.

Question 1

An Evil number is a positive whole number which has even number of 1’s in its binary equivalent.
Example: Binary equivalent of 9 is 1001, which contains even number of 1’s.
Thus, 9 is an Evil Number.
A few Evil numbers are 3, 5, 6, 9....
Design a program to accept a positive whole number ‘N’ where N>2 and N<100. Find the binary
equivalent of the number and count the number of 1s in it and display whether it is an Evil number or
not with an appropriate message.

INPUT: N = 15
BINARY EQUIVALENT: 1111
NUMBER OF 1’s: 4
OUTPUT: EVIL NUMBER

INPUT: N = 26
BINARY EQUIVALENT: 11010
NUMBER OF 1’s: 3
OUTPUT: NOT AN EVIL NUMBER

INPUT: N = 145
OUTPUT: NUMBER OUT OF RANGE

2

Page 3

Question 2

The potential of a word is found by adding the ASCII value of the alphabets.
(ASCII values of A to Z are 65 to 90).
Example: BALL
Potential = 66 + 65 + 76 + 76 = 283
Write a program to accept a sentence which may be terminated by either “ . ” , “ ? ” or “ ! ” only.
The words of sentence are separated by single blank space and are in UPPER CASE. Decode the
words according to their potential and arrange them in ascending order of their potential strength.

INPUT: HOW DO YOU DO?

OUTPUT: HOW = 238
DO = 147
YOU = 253
DO = 147

DO DO HOW YOU

INPUT: LOOK BEFORE YOU LEAP.

OUTPUT: LOOK = 309
BEFORE = 435
YOU = 253
LEAP = 290

YOU LEAP LOOK BEFORE

INPUT: HOW ARE YOU#

OUTPUT: INVALID INPUT

3

Page 4

Question 3

Write a program to declare a square matrix M [ ] [ ] of order ‘N’ where ‘N’ must be greater than 3
and less than 10. Allow the user to accept three different characters from the keyboard and fill the
array according to the instruction given below:
(i) Fill the four corners of the square matrix by character 1.
(ii) Fill the boundary elements of the matrix (except the four corners) by character 2.
(iii) Fill the non-boundary elements of the matrix by character 3.

INPUT: N=4
FIRST CHARACTER: @
SECOND CHARACTER: ?
THIRD CHARACTER: #

OUTPUT: @ ? ? @
? # # ?
? # # ?
@ ? ? @

INPUT: N=5
FIRST CHARACTER: A
SECOND CHARACTER: C
THIRD CHARACTER: X

OUTPUT: A C C C A
C X X X C
C X X X C
C X X X C
A C C C A

INPUT: N = 12

OUTPUT: SIZE OUT OF RANGE

4

Document Details

Board / OrgCISCE
ExamClass 12
TypeSample Paper
Pages4
Updated30 Apr 2026

More from CISCE

Class 10 Class 11 Class 12 Class 9