ISC Computer Science Previous Year Question Paper 2019 Solved for Class 12

Maximum Marks: 70
Time allowed: 3 hours

  • Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time.
  • Answer all questions in Part-I (compulsory) and six questions from Part-II, choosing two questions from Section-A, two from Section-B and two from Section-C.
  • All working, including rough work, should be done on the same sheet as the rest of the answer.
  • The intended marks for questions or parts of questions are given in brackets [ ].

Part – I (20 Marks)
Answer all questions.

While answering questions in this Part, indicate briefly your working and reasoning, wherever required.

Question 1.
(a) Name and draw the logic gate represented by the following truth table, where A and B are inputs and X is the output. [1]

A B X
0 0 0
0 1 1
1 0 1
1 1 0

(b) Write the canonical POS expression of: F(P, Q) = Π(0, 2) [1]
(c) Find the dual of: X.Y+X.Y’ = X + 0 [1]
(d) If F(A, B, C) = A’.B’.C’ + A’.B.C’ then find F’ using De Morgan’s Law. [1]
(e) If A = “It is cloudy” and B = “It is raining”, then write the proposition for [1]
(i) Contrapositive
(ii) Converse
Answer:
(a) XORgate
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 1
(b) (A + B).(A’ + B)
(c) (X + Y).(X + Y’) = X.1
(d) (AB’C + ABC’) (∵x’ + y’ = x’.y’)
= (AB’C’)’. (A’.B.C’)’ (∵(x’.y’) = x’ + y’)
= ((A’B’)’ + (C)’. ((A’B)’ + (C’)’)
= ((A’)’ + (B’)’) + C).((A’)’ + (B)’ + C)
= (A + B + C).(A + B’ + C)
= AA + AB’ + AC + BA + BB’ + BC + CA + CB’ + CC (∵x.x = x)
= A + AB’ + C + AC + AB + B’C + BC
(e) (i) If it is not raining then it is not cloudy.
(ii) If it is raining then it is cloudy.

Question 2.
(a) What is an Interface? How is it different from a class? [2]
(b) A matrix ARR[-4 ….. 6, 3 ……. 8] is stored in the memory with each element requiring 4 bytes of storage. If the base address is 1430, find the address of ARR[3] [6] when the matrix is stored in Row Major Wise. [2]
(c) Convert the following infix notation to postfix form: [2]
(A + B * C) – (E * F / H) + J
(d) Compare the two complexities O(n2) and O(2n) and state which is better and why. [2]
(e) State the difference between internal nodes and external nodes of a binary tree structure. [2]
Answer:
(a) An interface is just like Java Class, but it only has static constants and abstract method. Java uses Interface to implement multiple inheritances.
An interface is syntactically similar to a class, but it lacks in field declaration and the methods inside an interface do not have any implementation.
A class can be instantiated but an interface not.

(b) Given, Address of ARR[3] [6] = 1430
According to row-major,
Address = B + w(n(p – L1) + (q – L2)
B = 1430, w = 4 bytes
p = 3, q = 6,U1 = 6, U2 = 8, L1 = -4, L2 = 3
Number of columns n = U2 – L2 + 1
⇒ n = 8 – 3 + 1 = 6
Address of ARR[3][6] = 1430 + 4(6 (3 – (-4))+ (6 – 3))
= 1430 + 4(6 × 7 + 3)
= 1430 + 180
= 1610

(c) (A + B * C) – (E * F / H) + J
= (A + (BC*)) – ((EF*) / H) + J
= (ABC *+) – (EF * H/) + J
= (ABC *+ EF * H/-) + J
= ABC*+ EF * H / – J*

(d) O(n2) is better than O(2n)
Let us see with the help of an example.
Suppose n = 8
n2 = 82 = 64
2n = 28 = 256
Therefore, the complexity in 2n is higher than n2. If n increases, 2n increases much more than n2. Therefore, the time complexity is O(n2) is better than O(2n).

(e) Internal nodes are not leaf nodes whereas external nodes are leaf nodes.

Question 3.
The following function Mystery( ) is a part of some class. What will the function Mystery( ) return when the value of num=43629, x=3 and y=4 respectively? Show the dry run/working. [5]

int Mystery (int num, int x, int y)
{
if(num<10)
return num;
else
{
int z = num % 10;
if(z%2 == 0)
return z*x + Mystery (num/10, x, y);
else
return z*y + Mystery(num/10, x, y);
}
}

Answer:
Given n = 43629, x = 3, y = 4
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 2
Step 5 returns 4
Step 4 returns 12 + 4 = 16
Step 3 returns 18 + 16 = 34
Step 2 returns 6 + 34 = 40
Step 1 returns 36 + 40 = 76

Part- II (50 Marks)

Answer six questions in this part, choosing two questions from Section A, two from Section B and two from Section C.

Section – A
Answer any two questions.

Question 4.
(a) Given the Boolean function F(A, B, C, D) = Σ (0, 2, 3, 4, 5, 8, 10, 11, 12, 13).
(i) Reduce the above expression by using 4-variable Karnaugh map, showing the various groups (i.e. octal, quads and pairs). [4]
(ii) Draw the logic gate diagram for the reduced expression using only NAND gates. Assume that the variables and their complements are available as inputs. [1]
(b) Given the Boolean function : F(P, Q, R, S) = π (0, 1, 2, 8, 9, 11, 13, 15).
(i) Reduce the above expression by using a 4-variable Karnaugh map, showing the various groups (i.e, octal, quads and pairs). [4]
(ii) Draw the logic gate diagram for the reduced expression using only NOR gates. Assume that the variables and their complements are available as inputs. [1]
Answer:
(a) (i) F(A, B, C, D) = Σ (0, 2, 3, 4, 5, 8, 10, 11, 12, 13)
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 3
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 4
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 5

Question 5.
(a) How is a decoder different from a multiplexer? Write the truth table and draw the logic circuit diagram for a 3 to 8 decoder and explain its working. [5]
(b) From the logic circuit diagram given below, derive the Boolean expression and simplify it to show that it represents a logic gate. Name and draw the logic gate. [3]
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 6
(c) Using a truth table, state whether the following proposition is a Tautology, Contradiction or Contingency: [2]
~(P =>Q)<=>(~P∨Q)
Answer:
(a) A multiplexer is a device which consists of multiple input channels through a single line while decoder consists of multiple inputs passing through multiple outputs.
Multiplexer converts inputs from unary codes (initial) to binary codes while decoder converts binary codes to inputs.
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 7
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 8
The circuit is designed with AND and NAND logic gates. It takes 3 binary inputs and activates one of the eight outputs. 3 to 8 line decoder circuit is also called as binary to an octal decoder.
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 9
The last column contains only True values. Therefore, it is Tautology.

Question 6.
(a) The owner of a company pays the bonus to his salesmen as per the criteria are given below: [5]
If the salesman works overtime for more than 4 hours but does not work on off days/ holidays.
OR
If the salesman works when festival sales are on and updates showroom arrangements.
OR
If the salesman works on an off day/holiday when the festival sales are on.
The inputs are:

INPUTS
O Works overtime for more than 4 hours
F Festival sales are on
H Working on an off day/holiday
U Updates showroom arrangements

(In all the above cases 1 indicates yes and 0 indicates no)
Output: X[1 indicates yes, 0 indicates no for all cases]
Draw the truth table for the inputs and outputs given above and write the POS expression for X(O, F, H, U).
(b) What is a half adder? Write the truth table and derive an SOP expression for sum and carry for a half adder. [3]
(c) Simplify the following expression, using Boolean laws: [2]
(X + Z).(X.Y + Y.Z’) + X.Z + Y
Answer:
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 10
(b) The half adder is an example of a simple, functional digital circuit built from two logic gates. The half adder adds two one-bit binary numbers (AB). The output is the sum of the two bits (S) and the carry (C).
The truth table for a half-adder is:

x y C S
0 0 0 0
0 1 0 1
1 0 0 1
1 1 1 0

‘x’ and ‘y’ are the two inputs, and S (Sum) and C (Carry) are the two outputs.
The Carry output is ‘O’ unless both the inputs are 1.
‘S’ represents the least significant bit of the sum.
The simplified sum of products (SOP) expressions is:
S = x’y + xy’, C = xy
(c) (X + Z).(X.Y + Y.Z’) + X.Z + Y
= (X + Z).(Y.Z’) + X.Z + Y (a.b = 0)
= X.Y.Z’ + Z.Z’ + X.Z + Y (a.a’ = 0) and (a.c = 0)
= 0.Z’ + 0 + 0 + Y
= Y

Section – B
Answer any two questions.

  • Each program should be written in such a way that it clearly depicts the logic of the problem.
  • This can be achieved by using mnemonic names and comments in the program.
  • Flowcharts and Algorithms are not required.
  • The programs must be written in Java.

Question 7.
Design a class ArmNum to check if a given number is an Armstrong number or not. [A number is said to be Armstrong if sum of its digits raised to the power of length of the number is equal to the number] [10]
Example:
371 = 33 + 73 + 13
1634 = 14 + 64 + 34 + 44
54748 = 55 + 45 + 75 + 45 + 85
Thus, 371, 1634 and 54748 are all examples of Armstrong numbers.
Some of the members of the class are given below:
Class name: ArmNum
Data members/instance variables:
n: to store the number
1: to store the length of the number
Methods/Member functions:
ArmNum (int nn): parameterized constructor to initialize the data member n = nn
int sum_pow(int i): returns the sum of each digit raised to the power of the length of the number using recursive technique eg., 34 will return 32 + 42 (as the length of the number is 2)
void isArmstrong(): checks whether the given number is an Armstrong number by invoking the function sum_pow () and displays the result with an appropriate message.
Specify the class ArmNum giving details of the constructor( ), int sum_pow(int) and void isArmstrong( ). Define a main() function to create an object and call the functions accordingly to enable the task.
Answer:

import java.io.*;
import javautil.*;
class ArmNum
{
private int n;
private int 1;
public ArmNum(int num)
{
n = num;
i = 0;
for(int i = n; i! = 0; i/= 10)
i++;
}
public int sumPow(int i)
{ if(i < 10)
return (int)Math.pow(i, 1);
return (int)Math.pow(i % 10, 1) + sumPow(i/10);
}
public void isArmstrong()
{
if(n == sumPow(n))
System.out.println(n+" is an Armstrong number.");
else
System.out.println(n+ " is not an Armstrong number.");
}
public static void main(String args[])throws IOException{
Scanner sc = new Scanner(System.in);
System.out.print("N =");
int num = sc.nextInt();
ArmNum obj = new ArmNum(num);
obj.isArmstrong();
}
}

Question 8.
Design a class MatRev to reverse each element of a matrix. [10]
Example:
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 11
Some of the members of the class are given below:
Class name: MatRev
Data members/instance variables:
arr[][] : to store integer elements
m: to store the number of rows
n: to store the number of columns
Member functions/methods:
MatRev(int mm, int nn): parameterized constructor to initialise the data members m = mm and n = nn
void fillarray(): to enter elements in the array
int reverse(int x): returns the reverse of the number x
void revMat(MatRev P): reverses each element of the array of the parameterized object and stores it in the array of the current object
void show(): displays the array elements in matrix form
Define the class MatRev giving details of the constructor ( ), void fillarray (), int reverse(int), void revMat(MatRev) and void show(). Define the main () function to create objects and call the functions accordingly to enable the task.
Answer:

import java.io.*;
import java.util.*;
class MatRey{
private int arr[][];
private int m;
private int n;
public MatRev(int mm, int nn) {
m=mm;
n = nn;
arr=newint[m][n];
}
public void fillArray( )throws IOException{
Scanner sc = new Scanner(System.in);
System.out.println("Enter matrix elements::");
for(int i = 0; i < m; i++) {
for(int j = 0; j < n; j++) {
arr[i][j] = sc.nextInt();
}
}
}
public int reverse(int x) {
int rev = 0;
for(int i = x; i != 0; i /= 10)
rev = rev * 10 + i % 10;
return rev;
}
public void revMat(MatRev p) {
for(int i = 0; i < m; i++) {
for(int j = 0; j < n; j++) {
this.arr[i] [j] = reverse(p.arr[i] [j]);
}
}
}
public void show() {
for(int i = 0; i < m; i++) {
for(int j = 0; j < n; j++) {
System, out. print(arr[i][j] + "\t");
}
System.out.println();
}
}
public static void main(String args[])throws IOException{
Scanner sc = new Scanner(System.in);
System.out.print("Enter number of rows::");
int x = sc.nextInt();
System.out.print("Enter number of columns::");
int y = sc.nextInt();
MatRev obj 1 = new MatRev(x, y);
MatRev obj2 = new MatRev(x, y);
obj1.fillArray();
obj2.revMat(obj 1);
System.out.println("Original Matrix is::");
obj1.show();
System.out.println("Matrix with reversed elements");
obj2.show();
}
}

Question 9.
A class Rearrange has been defined to modify a word by bringing all the vowels in the word at the beginning followed by the consonants. [10]
Example:
ORIGINAL becomes OIIARGNL
Some of the members of the class are given below:
Class name: Rearrange
Data Member/instance variable:
wrd: to store a word
newwrd: to store the rearranged word
Member functions/methods:
Rearrange(): default constructor
void readword(): to accept the word in UPPER case
vow freq_vow_con(): finds the frequency of vowels and consonants in the word and displays them with an appropriate message
void arrange(): rearranges the word by bringing the vowels at the beginning followed by consonants
void display(): displays the original word along with the rearranged word
Specify the class Rearrange, giving the details of the constructor(), void readword(), void freq _vow_con(), void arrange() and void display(). Define the main() function to create an object and call the functions accordingly to enable the task.
Answer:

import java.io.*;
import java.util.*;
class Rearrange {
private String wrd;
private String newwrd;
public Rearrange() {
wrd = new String();
newwrd = new String();
}
public void readword() throws IOException {
Scanner sc = new Scanner(System.in);
System.out.print("Enter the word:");
wxd = sc.next();
}
public void freq_vow_con() {
wrd = wrd.toUpperCase();
int v = 0;
int c = 0;
forint i = 0; i < wrd.length(); i++) {
char ch = wrd. char At(i);
if(Character.isLetter(ch)) {
switch(ch) {
case 'A':
case'E':
case T:
case 'O':
case 'U':
v++;
break;
default:
C++;
}
}
}
System.out.println("Frequency of vowels: "+v);
System.out.println("Frequency of consonants: "+c);
}
public void arrange() {
String v = new String();
String c = new String();
wrd = wrd.toUpperCase();
for(int i = 0; i < wrd. length(); i++) {
char ch = wrd.charAt(i);
if(Character.isLetter!ch)) {
switch(ch) {
case 'A':
case'E':
case T:
case 'O':
case 'U':
v += ch;
break;
default:
c + = ch;
}
}
}
newwrd = v + c;
}
public void display() {
System.out.println("Original word:" + wrd);
System.out.prfntln("Rearranged word:" + newwrd);
}
public static void main(String args[])throws IOException {
Rearrange obj = new Rearrange();
obj.readword();
obj.freq_vow_con();
obj.arrange();
obj.display();
}
}

Section – C
Answer any two questions.

  • Each program should be written in such a way that it clearly depicts the logic of the problem stepwise.
  • This can be achieved by using comments in the program and mnemonic names or pseudo-codes for algorithms.
  • The programs must be written in Java and the algorithms must be written in general/standard form, wherever required/specified.
  • Flowcharts are not required.

Question 10.
A superclass Record contains names and marks of the students in two different single dimensional arrays. Define a subclass Highest to display the names of the students obtaining the highest mark [5]
The details of the members of both classes are given below:
Class name: Record
Data member/instance variable:
n[] : array to store names
m[]: array to store marks
size: to store the number of students
Member functions/methods:
Record(int cap): parameterized constructor to initialize the data member
size = cap
void readarray() : to enter elements in both the arrays
void display() : displays the array elements
Class name: Highest
Data member/instance variable:
ind: to store the index
Member functions/methods:
Highest(…): parameterized constructor to initialize the data members of both the classes
void find(): finds the index of the student obtaining the highest mark and assign it to ‘ind’
void display(): displays the array elements along with the names and marks of the students who have obtained the highest mark

Assume that the superclass Record has been defined. Using the concept of inheritance, specify the class Highest giving the details of the constructor(…), void find() and void display().
The superclass, main function and algorithm need NOT be written.
Answer:

class Record
{
protected String n[];
protected int m[];
protected int size;
public Recordfint cap) {
}
public void readarray() {
}
public void display() {
}
}
class Highest extends Record {
private int ind;
public Highest(int cap) {
super(cap)
}
public void find() {
ind = 0;
for (int i = 0; i < size; i++) { if(m[i]>m[ind]){
ind = i;
}
}
}
public void display() {
super.display();
System.out.println("Highest marks are::" +m[ind]);
System.out.println("Students who score the highest marks are::");
for (int i = 0; i < size; i++) }
if(m[i] == m[ind]) {
System.out.println(n[i]);
}
}
}
}

Question 11.
A linear data structure enables the user to add an address from rear end and remove address from front. Define a class Diary with the following details :
Class name: Diary
Data members/instance variables:
Q[]: array to store the addresses
size: stores the maximum capacity of the array
start: to point the index of the front end
end: to point the index of the rear end
Member functions:
Diary(int max): constructor to initialize the data member size = max, start=0 and end=0
void pushadd(String n): to add the address in the diary from the rear end if possible, otherwise display the message “NO SPACE”
String popadd(): removes and returns the address from the front end of the diary if any, else returns “?????”
void show (): displays all the addresses in the diary
(a) Specify the class Diary giving details of the functions void pushadd(String) and String popadd(). Assume that the other functions have been defined. [4]
The main function and algorithm need NOT be written.
(b) Name the entity used in the above data structure arrangement. [1]
Answer:

(a) class Diary {
public void pushAdd(String n) {
if(Q[0].equals(""))
Q[0] = n;
else if(end + 1 < size) Q[end + 1] = n; 
else 
System.out.println("NO SPACE"); 
} 
public String popadd() { 
if(start -1 >= 0)
return Q[start--];
else
return "?????";
}
}

(b) Queue

Question 12.
(a) A linked list is formed from the objects of the class Node. The class structure of the Node is given below: [2]

class Node
{
int num;
Node next;
}

Write an Algorithm OR a Method to find and display the sum of even integers from an existing linked list.
The method declaration is as follows:
void SumEvenNode(Node str)
(b) Answer the following questions from the diagram of a Binary Tree given below:
ISC Computer Science Question Paper 2019 Solved for Class 12 image - 12
(i) Write the pre-order traversal of the above tree structure. [1]
(ii) State the size of the tree. [1]
(iii) Name the siblings of the nodes E and G [1]
Answer:

(a) void sumEvenNode(Node str) {
if(str = null)
return 0;
else if(str.num % 2 == 0)
return str.num + sumEvenNode(str.next);
else
return 0 + sumEvenNode(str.next);

(b) (i) A → E → G → I → C → H → B → D → F
(ii) The size of the tree is 4.
(iii) Sibling of E is B.
Sibling of G is C.

ISC Class 12 Computer Science Previous Year Question Papers

Leave a Reply

Your email address will not be published. Required fields are marked *