Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

Downloaded From www.tutorialacisip.

com
Periodic Test – I (Academic Year 2023-24) Answer Key
Subject: Computer Science(083) Class 11 Date:_________
Time: 1:00 Hour Max. Marks: 25
General Instructions
• This paper contains 2 pages.
• The question paper is divided into 3 sections – A, B and C.
• Section A, consists of 4 questions (1-4). Each question carries 2 marks.
• Section B, consists of 3 questions (5-7). Each question carries 3 marks.
• Section C, consists of 2 questions(8 & 9). Each question carries 4 marks.
• Internal choice are given in the questions.
Section A
(There are 4 questions and Internal choices are in Que. 1 and Que. 4.)
1. Identify the following:
a) ALU
b) Bit
OR
a) Tailor-made software, ERP
b) IDE/Development tools
1 mark for each correct answer.
2. Which device is used to do the following work?
a. To output audio - Speaker
b. To make a hard copy - Printer
c. To take input from voice - Mic
d. To enter textual data – Keyboard
𝟏⁄ Mark for each correct device
𝟐
3. Octal number system has base of 8. It contains numbers in the range from 0 to
7. The number is represented in this form – 107
2 marks for relevant answer
4. i) Boolean Functions - A Boolean function refers to a function having n
number of entries or variables, so it has 2n number of possible combinations of
the given variables. Such functions produce the output only in 0s and 1s.
ii) Binary Valued Variables: Boolean variables are represented as binary
numbers to represent truths: 1 = true and 0 = false.
1 mark for each appropriate definition
OR
What is truth table? Explain in detail.
Ans.:
A truth table shows the results of a logical expression, with individual columns
for each involved variable, and a column for their corresponding outcomes. All
variations of the inputs or arguments are listed to the left, while the output is
usually placed in the last columns to the right.
Example: The truth table for the logical AND operator (2-input AND gate).

Page 1 of 4
A B AB
0 0 0
0 1 0
1 0 0
1 1 1
1 mark for definition and 1 mark for example
Section B
(There are 3 questions and Internal choice is given in Question 6.)
5. Assembler: Assembler is a language translator that is used to convert assembly
language code into machine code.
Compiler : It converts high level language code into binary code. It compiles
the entire program once and then return errors.
Interpreter: It converts high level language code into binary code. It checks
the program line by line and stop the program execution where error comes.
1 mark for each
6.
a) 2 3472 0 b) 2 4567 1 c) 2 2011 1
2 1736 0 2 2283 1 2 1005 1
2 868 0 2 1141 1 2 502 0
2 434 0 2 570 0 2 251 1
2 217 1 2 285 1 2 125 1
2 108 0 2 142 0 2 62 0
2 54 0 2 71 1 2 31 1
2 27 1 2 35 1 2 15 1
2 13 1 2 17 1 2 7 1
2 6 0 2 8 0 2 3 1
2 3 1 2 4 0 1
1 2 2 0
1
1101 1001 0000 0001 0001 1101 0111 0111 1101 1011
OR
Convert the following hexadecimal numbers into decimal number system:
a) DADA - 56026 b) 11B - 283 c) BABA - 47802
Digit D A D A
Equivalent 13 10 13 10
Position 3 2 1 0
Calculation 13 x 16 +
3
10 x 16 2
+ 13 X 16 +
1
10 x 160
13 x 4096 + 10 x 256 + 13 X 16 + 10 x 1
53248 + 2560 + 208 + 10
56026
1 mark for correct answer with calculation steps

Page 2 of 4
7. There are three basic operators used in truth functions. They are :
a) not - It negates the logical operations. It has one operand and returns 1 if
input is 0 and returns 0 is input is 1. It is denoted as bar A’.
b) and – It is binary operator that operates on two variables and known as
logical conjunction. It returns 1 when both inputs are 1 other wise 0.
c) or – It is also a binary operator that operates on two variables and known as
logical disjunction. It returns 0 when both inputs are 0 otherwise 1.
1 mark for each function’s appropriate explanation
Section C
There are 2 questions and Internal choice is given in Question 9.
8.
Ans.:

CPU

CU ALU MU

Primary Secondary
Memory Memory

RAM ROM

In computer organization CPU functions as the core of the organization. It


accepts the request from input unit and send other parts of it to process the
request.
The CPU has three main parts:
1. CU – CU functions like manager of the CPU. It controls, directs, determines
the request accepted from CPU and send to the other parts for the
processing.
2. ALU – It performs arithmetic and logical operations on the request accepted
from CU. After completion of the task the request is sent to MU for storage.
3. MU – It has two types: Primary Memory and Secondary Memory. It saves
the data in temporary form or permanently.

Page 3 of 4
9. Convert the following binary numbers to decimal numbers:
a. 1011 - 11 b. 1100101 - 37 c. 1110010 - 114 d. 11111100 - 252
Digit 1 0 1 1
Position 3 2 1 0
Calculation 1 x 23 + 0 x 22 + 1 X 21 + 1 x 20
1x8 + 0x4 + 1X2 + 1x1
8 + 0 + 2 + 1
11
1 mark for each correct calculation and answer
OR
A B C A’ B’ C’ ABC’ A’B’C’ ABC’+A’B’C’
0 0 0 1 1 1 0 1 1
0 0 1 1 1 0 0 0 0
0 1 0 1 0 1 0 0 0
0 1 1 1 0 0 0 0 0
1 0 0 0 1 1 0 0 0
1 0 1 0 1 0 0 0 0
1 1 0 0 0 1 1 0 1
1 1 1 0 0 0 0 0 0
1 mark for representation of values, 1 marks for representing complementation,
1 mark for both ABC’ and A’B’C’, 1 mark for final representation
---------------x---------------

Page 4 of 4

You might also like