Periodic Test-I (2023-24)
Periodic Test-I (2023-24)
SECTION -A
Q .1. Multiple choice questions. (10X1=10M)
SECTION - D
Q.4 Convert the following. (4X2=8M)
1. Hexadecimal numbers into decimal numbers: i) 76F ii) 2C9
2. Decimal numbers into binary numbers: i)84 ii) 120
3. Binary number into octal numbers. i) 100110001101 ii) 101110001000
4. Octal numbers into decimal numbers: i) 455 ii) 10.75
Periodic Test-I (2023-24)
Subject- Computer science Answer key
Grade -XI Marks:-40
Q.1 10M
1. Processor
2. Software
3. Secondary
4. Software
5. Control Unit
6. All of these
7. Unicode
8. F
9. ESCII
10. 44
Q.2 10M
1. Types of RAM- 1) Static RAM. 2) Dynamic RAM
2. The functional units of a digital computer system are:
1. Input unit 2. Central Processing Unit 3. Output Unit 4. Memory
3. secondary storage devices are 1. Hard disk. 2. Compact disk 3. DVDS 4. Blu ray disk.
4. Bit- a bit is an elementary unit of the memory.
Byte- A group of eight bits.
5. ROM is read only memory so we can only read data but we can’t write data into ROM.
6. varieties of DVDs are: 1. DVD-ROM 2. DVD- R 3. DVD-RW
7. Basis of decimal- 10, Octal – 8 , binary -2 , hexadecimal -16
8. sequence 100, 101, 110, 1000, 1001, 1010.
9. ASCII – American Standard Code for Information Interchange.
10. ISCII – Indian Standard Code for Information Interchange.
Q.3 12M
1. The memory temporarily holds the data and information during processing.
The smallest unit of memory is a (8 bit). A byte can store one character in binary form. Other measuring units are
kilobytes (KB) equal to 1024 bytes, Megabyte(MB) equal to 1024 KB, Gigabyte(GB) equal to 1024 MB and
Terabytes(TB) equal to 1204 GB.
2. RAM refers to random access memory where both read and write operations can take place. But the RAM is a volatile
memory, its contents are lost when power is turned off.
ROM refers to read only memory where only read operation can take place. The ROM is a non-volatile memory. Both
RAM and ROM are parts of the primary memory.
3.Cache memory is a special high-speed memory that stores most recently used data in order to speed up the process of
instruction execution. A cache can speed up data retrieval because recently used data is likely to be used again by the
computer.
4.There are broadly two categories of software:
1.System Software. This type of software controls internal computer operations. The system software can further be
classified in two categories:
(i) Operating System. An operating system is a program which acts as an interface between a user and the hardware.
(ii) Language Processor. This program is responsible for converting an HLL code (High Level Language code) into
machine understandable code.
2.Application Software. An application software is the set of programs necessary to carry out operations for a specified
application.
5. An interpreter converts an HLL program into machine language line by line and simultaneously executes the converted
line. Also, an interpreter must always be present in the memory along with the program for its execution. If an error
occurs in a line, the line is displayed and interpreter does not proceed unless the error is rectified.
A compiler converts an HLL program in machine language in one go. If there are errors in the program, it gives the error
list along with the line numbers. Once the errors are removed, error-free object code is made available and after this
compiler is no more needed in the memory.
The ALU perform all the four arithmetic (+, -, *, /) and some logical ( < ,> , =, <=, >=, !=) Operations when two numbers
are required to be added these numbers are sent from memory to ALU where addition take place and the result is put
back in a memory in the same way other arithmetic operations are performed through ALU.