You are on page 1of 7

Downloaded from www.tutorialaicsip.

com
Half yearly (Academic Year 2023-24)
Answer Key
Subject: Computer Science(083) Class 11 Date:_________
Time: 3:00 Hours Max. Marks: 70
Section –A
1. c) CPU 3. b) General Purpose Software
2. b) ALU 4. d) Browser
5. a) radix 11. d) Analyse the problem
6. b) 99 12. c) OR
7. a) 283 13. a) NOT-OR
8. c) Decomposition 14. d) NAND
9. c) Decision 15. b) Interactive Mode
10. c) Pseudocode 16. b) Netbeans
17. a) 18. c)

Section B
19.
Volatile Non-Volatile Memory
Keeps data till power is on. It keeps data even power is off.
It is faster memory It is slower memory
RAM is an example of volatile memory ROM is an example of non-volatile memory
It requires less storage capacity It requires more storage capacity
This is more expensive This is less expensive
20.
a) 110
1 1 0
2 1 0
1 x 22 1 x 21 0 x 20
1x4 1x2 0x1
4 2 0
6
b) 1101
1 1 0 1
3 2 1 0
1 x 23 1 x 22 0 x 21 1 x 20
1x8 1x4 0x2 1x1
8 4 0 1
13
OR

Page 1 of 7
a) 137
1 3 7
Z Y X

0 0 0 0
1 0 0 1 Z
2 0 1 0
3 0 1 1 Y
4 1 0 0
5 1 0 1
6 1 1 0
7 1 1 1 X
(137)8=(001 011 111) 2
b) 42
4 2
Y X

0 0 0 0
1 0 0 1
2 0 1 0 X
3 0 1 1
4 1 0 0 Y
5 1 0 1
6 1 1 0
7 1 1 1
(42)8=(100 010)2
21.
➢ Easy to learn and use ➢ Supportive Community
➢ Free and open source ➢ Interpreted Language
➢ Dynamic Typing ➢ Extensive Library
22.
Interactive Mode Script Mode
By default, python open with It can be opened from interactive mode
interactive mode only or through editing program
It is suitable to execute basic It is suitable to execute block of code
commands
The result is immediately It display the result when run module
displayed after pressing enter command is used
It cannot save the commands It saved the entire program

23.
X Y Y’ X + Y’
0 0 1 1
0 1 0 1
1 0 1 1
1 1 0 1

OR

Page 2 of 7
X
Y

24.
S.No Postulate Equation
1 Law of identity A+0=0+A=A
2 Commutative Law (A+B)=(B+A)
(A.B) =(B.A)
3 Distributive Law A . (B + C) = (A . B) + (A . C)
A + (B . C) = (A + B) . (A + C)
4 Associative Law A + (B + C) = (A + B) + C
(A . B) . C = A . (B . C)
5 Complement Law A + A’ = 1
A . A’ = 0

25. A
Step 1 – Begin
Step 2 – Read n1,n2
Step 3 – Compute and Display n1 * n2
Step 4 - End
OR

Page 3 of 7
Section C
26.
i) DADA
D A D A
68 65 68 65
ii) CaB
C a B
67 97 66
27. a) A69
A 6 9
2 1 0
10 x 162 6 x 161 9 x 160
10 * 256 6 x 16 9x1
2560 96 9
2665
b) 45E
4 5 E
2 1 0
4 x 162 5 x 161 14 x 160
4 * 256 5 x 16 14 x 1
1024 80 14
1114
c) BAD
B A D
11 10 13
11 x 162 10 x 161 13 x 160
11 * 256 10 x 16 13 x 1
2816 160 13
2989
OR
a) 198
16 198 6
12 C
C6

b) 231
16 231 7
14 E
E7
c) 567
16 567 7
16 35 3
2
237

Page 4 of 7
28.
Step 1 – start
Step 2 – declare n1,n2,n3,n4,n5
Step 3 – input n1,n2,n3,n3,n4,n5
Step 4 – compute avg = (n1+n2+n3+n4+n5)/5
Step 5 – display avg
Step 6 - end
29.
30
27 33
30.
x,y,z=5, 6, 7
print(“Values are:”,x,y,z)
z, y, x =7,6,5
print(z and x)

OR
a=4
b=’5’
print(a*b) #indetnation
print(a+int(b))

Section D
31.
Ans.: There are four basic number systems:
a) Binary – The base of binary number system is 2. Only 0 and 1 is used to
represent any number. Binary number system is the basic language which
computers understood. Example - 11011
b) Decimal – This number system has 10 base. The digits used in this number
system are 0 to 9. This number system we are using for calculations. Example - 56
c) Octal – This number system has 8 base. The digits used in this number system
are 0 to 7. Example - 721
d) Hexadecimal – This number has 16 base. It represents numbers with 0 to 9
and alphabets A to F. Example – 1DF5
32.
Algorithm
Step 1 – begin
Step 2 - read p,r,n
Step 3 – compute si = p*r*n/100
Step 4 – display si

Page 5 of 7
Step 5 – end

Flowchart

OR
Algorithm:
Step 1 – begin
Step 2 – read n
Step 3 – compute s=n*n
Step 4 – display s
Step 5 – End
Flowchart:

Page 6 of 7
33.
n=int(input(“Enter number:”))
print(“n*n=”,n***2)
print(“n*n*n”,n**3)
print(“n*n*n*n”,n**4)
OR
a=float(input(“Enter side a:”))
b=float(input(“Enter side b:”))
c=float(input(“Enter side c:”))
s=(a+b+c)/2
area= (s*(s-a)*(s-b)*(s-c)) ** 0.5
print(“The area of triangle is:%.2f”,area)

Section E
34.
a. Write input statement for statement 1 – float(input(“Enter Dollars:”))
b. Write the computation using arithmetic operators to convert dollars into
rupees for statement 2 – rs = d*79.68
c. Write a statement to deduct bank charges 95 – net_rs=rs-95
d. Write a statement to display : “Net amount received” and final value –
print(“net amount received-”,net_rs)
35. Meet is solving DeMorgan’s First theorem but he missed some statements.
Write the correct statements and fill them.
(X+Y)’=X’Y’
(X+Y)+(X’Y’)=1
=((X+Y)+(X+X’)).((X+Y)+(Y+Y’))
= (X+ X’+Y).(X+Y+Y’)
=(1 + Y).(X+1)
=1.1
=1

Page 7 of 7

You might also like