CHP 1 Comp Assignment Problems
CHP 1 Comp Assignment Problems
Answer
(a)
Both Assertion and Reason are true and Reason is the correct explanation of
Assertion.
Explanation
Question 7
Answer
(c)
Explanation
Software libraries are not customised software. Software libraries are set of pre-
written code/functions/classes etc. available to programmers for use in the
development of new code.
Question 8
Answer
(a)
Both Assertion and Reason are true and Reason is the correct explanation of
Assertion.
Explanation
Utility software are those application programs that assist the computer by
performing housekeeping functions like backing up disk or scanning / cleaning
viruses or arranging information, etc.
Assignment Questions
Question 1
Answer
1. Input Unit — An input unit takes the input and converts it into binary form
so that it can be understood by the computer. For example, keyboard,
mouse etc.
2. Output Unit — It converts the output in binary form to human readable
LOGIN JOIN NOW
form. For example, monitor, speakers etc.
3. Central Processing Unit (CPU) — It is responsible for processing the data
and instructions. It consists of two parts:
i. Arithmetic and Logic Unit (ALU) — It performs all the four arithmetic
operations (addition, subtraction, multiplication and division) and some
logical operations (less than, greater than, less than equal to, greater
than equal to, equal to, not equal to).
ii. Control Unit (CU) — It acts as a supervisor by controlling and guiding
the operation taking place.
4. Primary Memory — It is the internal volatilememory where data and
instructions are stored during processing. It is of two types: Random Access
Memory (RAM) and Read Only Memory (ROM).
5. Secondary Storage Unit — It refers to the external storage devices which
provide permanent memory to the computer system. For example, hard
disk, compact disk, flash drive etc.
Question 2
What do you understand by input unit? What is its significance ? What does
computer input consist of?
Answer
An input unit takes the input and converts it into binary form so that it can be
understood by the computer.
Different input devices take input in different forms and pass them in digital
form to CPU for processing. Computer inputs may consist of:
Question 3
What is the function of CPU in a computer system ? What are its subunits ?
Answer
The CPU or the Central Processing Unit is the main control centre and processing
unit. It is also called brain of the computer as it guides, directs, controls and
governs the performance of a computer.
1. Arithmetic and Logic Unit (ALU) — It is responsible for carrying out the
arithmetic instructions (add, subtract, multiply, divide) and making logic
decisions (greater than, less than, equal to).
2. Control Unit — It is responsible for controlling and supervising the
processing.
3. Registers — The CPU uses these small units of data holding places to
temporarily hold some important processing-information during the time
the processing is taking place.
Question 4
LOGIN JOIN NOW
What functions are performed by the control unit ? Can we call it the control
centre of computer system ? Why ?
Answer
1. It controls and guides the interpretation, flow and manipulation of all data
and information.
2. It sends control signals until the required operations are done properly by
ALU and memory.
3. It fetches the program instructions from the memory unit one by one. The
instructions are decoded and executed one after the other.
4. After an instruction is executed, it sends a signal to memory to send the next
instruction in sequence to CU.
5. It controls the flow of data from input devices to memory and from memory
to output devices.
Yes, we can call control unit the control centre of computer system because it
acts as a supervisor by controlling and guiding all the other components of the
computer system as well as the operations taking place.
Question 5
Answer
Arithmetic and Logic unit is responsible for carrying out the arithmetic
instructions (add, subtract, multiply, divide) and making logic decisions (greater
than, less than, equal to).
Question 6
Answer
CPU ALU
CPU guides, directs, controls and ALU carries out arithmetic and logic
governs the performance of a operations on the operands in
computer. computer instructions.
Question 7
Answer
Output Unit converts the output in binary form to human readable form. The
LOGIN JOIN NOW
output coming from the CPU is in the form of binary signals which needs
conversion in some human readable form i.e,, characters, graphical or audio
visual form. This function of conversion is performed by output units.
Examples of some output devices are monitor, speaker, printers, plotters etc.
Question 8
Answer
Question 9(a)
Define byte.
Answer
A bit is an elementary unit of the memory. Eight bits together form a byte.
Question 9(b)
Define kilobyte.
Answer
Question 9(c)
Define megabyte.
Answer
Question 9(d)
Define gigabyte.
Answer
Question 9(e)
Define terabyte.
Answer
Question 10
What is the meaning of the term volatile primary memory ? What can be done to
LOGIN JOIN NOW
overcome the problems of volatility ?
Answer
Volatile primary memory means that when the power goes off, the contents of
the primary memory get erased.
Question 11
Answer
Question 12
Answer
Since the main memory is volatile, the computer also uses secondary memory to
store data permanently.
Question 13
What are RAM and ROM ? How are they alike ? How are they different ? What are
EEPROM, PROM and EPROM?
Answer
RAM refers to Random Access Memory where both read and write operations
can take place. But the RAM is a volatile memory and its contents are lost when
power is turned off.
ROM refers to Read Only Memory where only read operation can take place. It
does not have a write capability. ROM is a non-volatile memory.
RAM and ROM are the main memory of a computer and both of them are
LOGIN JOIN NOW
required for the smooth functioning of a computer system.
The RAM provides memory for reading as well writing and its contents can be
modified as and when required. ROM, on the other hand, stores some
instructions which are permanent. ROM cannot be written onto. One can only
read instructions from ROM.
EPROM refers to erasable programmable ROM. In EPROM, one can program the
memory chip through various mechanisms (e.g., UV radiation) and erase it as
many times as needed. The UV-EPROM can take up to 20 minutes for erasing
EPROM contents.
Question 14
Answer
The cache memory is a high speed memory available inside CPU in order to
speed up access to data and instructions stored in RAM memory. Whenever
some data is required, the CPU first looks in the cache, if it is there or not. If the
data is found in cache, CPU does not access memory and hence the process
becomes very fast.
Memory caching is effective because most programs access the same data or
instructions over and over. By keeping as much of this information as possible in
cache memory (SRAM), the computer avoids accessing the slower main memory
(DRAM). Hence, cache memory is useful for improving the performance of the
computer.
Question 15
Answer