Computer System REVIEWER
Computer System REVIEWER
INTRODUCTION
If you use a desktop computer, you might already know that there isn't any single part called the "computer." A
computer is really a system of many parts working together. The physical parts, which you can see and touch, are
collectively called hardware. (Software, on the other hand, refers to the instructions, or programs, that tell the
hardware what to do.)
The following illustration shows the most common hardware in a desktop computer system. Your system might
look a little different, but it probably has most of these parts. A laptop computer has similar parts but combines
them into a single, notebook-sized package.
A Computer is a high speed electronic device that can process entered data; correspondingly. It produces some
form of processing output. Aside from processing, the computer can also store data, either in primary or secondary
storage media.
1. Hardware- the physical, touchable, electronic and mechanical parts of a computer system.
A. Input Devices - Accepts data and instructions from the user or from another computer system.
Light Pen - A light-sensitive stylus wired to a video terminal used to draw pictures or select menu options.
The user brings the pen to the desired point on screen and presses the pen button to make contact.
Digitizer Tablet - A graphics drawing tablet used for sketching new images or tracing old ones.
Also called a "graphics tablet," the user contacts the surface of the device with a wired or wireless pen or
puck. Often mistakenly called a mouse, the puck is officially the “tablet cursor."
2. Scanning Devices- A device that can read text or illustrations printed on paper and translates the
information into a form the computer can use.
3. Voice- Input Devices - Audio input devices also known as speech or voice recognition systems that allow a
user to send audio signals to a computer for processing, recording, or carrying out commands. Audio input
devices such as microphones allow users to speak to the computer in order to record a voice message or
navigate software.
Figure 19. Cathode Ray Tube Monitor Figure 20. Liquid Crystal Display Monitor
b. LC D Monitors - Liquid Crystal Display (LCD) technology has been used in laptops for some time. It has
recently been made commercially available as monitors for desktop PCs.
c. LED Monitors (Light Emitting Diode) - A display and lighting technology used in almost every electrical
and electronic product on the market, from a tiny on/off light to digital readouts, flashlights, traffic lights and
perimeter lighting.
LCD and LED Printer- Similar to a laser printer, but uses liquid crystals or
light-emitting diodes rather than a laser to produce an image on the drum.
Figure 25. Laser Printer
Line Printer - Contains a chain of characters or pins that print an entire line at one time. Line printers are very
fast, but produce low-quality print.
Figure 26. LCD Printer Figure 27. Line Printer Figure 28. Thermal Printer
5. Speakers - Used to play sound. They may be built into the system unit or connected with cables. Speakers
allow you to listen to music and hear sound effects from your computer.
B. Optical Disk / Optical Drive- An optical drive is a storage device that uses
lasers to read data on the optical media. There are three types of optical drives:
Compact Disc (CD), Digital Versatile Disc (DVD) and Blu-ray Disc (BD). Figure 9. CD ROM
Digital Versatile Disc (DVD) - Designed to optically access data stored on a DVD. A laser moves back and
forth near the disk surface and accesses data at a very fast rate.
C. Removable Disk – Flash Disk, Memory Card
Parallel Port Also called as printer port. This is only for old model
printer. It has 25 pins. It is a female port.
VGA (Video
Graphic Used to connect monitors. It has 15 pins and it is a
female port.
Array) Port
USB (Universal
Serial
Bus) Port High speed serial interface that is used with almost all
devices. It is used to connect latest model printers, pen
drives, cell phones etc. it has 4 pins.
PS/2 Port
Simple, 6-pin, low-speed Serial connections commonly
dedicated to a keyboard and mouse.
Power Port
Intended for power cord.
10. Cables and Wires- A cable is most often two or more wires running side by side and bonded, twisted or
braided together to form a single assembly, but can also refer to a heavy strong rope.
These jacks are intended for the PS/2 port specifically for
PS/2 type of keyboard and mouse.
2. Software is the set of instructions (also called a Program) that guides the hardware to operate effectively.
Software can be split into two main types:
Software
Engineer’s point of view – programs, documents, and data that are computer software.
User’s point of view – the resultant information that somehow makes the user’s world better.
Today software takes on a dual role. It is a product and, at the same time, the vehicle of delivering the
product.
Software Characteristics
Software is a logical rather than a physical system element.
Software is developed or engineered, it is not manufactured in the classical sense.
Software doesn’t “wear out”.
◦ It just deteriorates
Although the industry is moving toward component-based assembly, most software continues to be
custom built.
Types of Software
1. System Software
Written to service other programs e.g., compilers – process complex but determinate, information
structure
Operating system process largely indeterminate
Examples of popular modern operating systems include android, iOS, Linux, Mac OS X and Microsoft
Windows, but don't use these names in the exam!
b. Utility programs
Utility software is a type of system software which has a very specific task to perform related to the working
of the computer, for example anti-virus software, disk defragment etc. Utility software should not be
confused with application software, which allows users to do things like creating text KDE System Guard
monitoring the CPU usage, processes and memory usage
c. Library programs
Library programs are collections compiled routines which are shared by multiple programs, such as the
printing function. Library programs contain code and data that provide services to other programs such as
interface (look and feel), printing, network code and even the graphic engines of computer games. If you
have ever wondered why all Microsoft Office programs have the same look and feel, that is because they
are using the same graphical user interface libraries. For computer games a developer might not have the
time and budget to write a new graphics engine so they often buy graphical libraries to speed up
development, this will allow them to quickly develop a good looking game that runs on the desired
hardware. For example Battlefield 3 and Need for Speed both use the same Frostbite engine. Most
programming languages have a standard set of libraries that can be used, offering code to handle
input/output, graphics and specialist maths functions. You can also create your own custom libraries and
when you start to write lots of programs with similar functionality you'll find them very useful. Below is
an example of how you might import libraries into VB.NET:
'imports the libraries allowing a program to send emails
Imports System.Net.Mail
'imports the libraries allowing a program to draw in 2D
Imports System.Drawing.Drawing2D
d. Translator software
The final type of system software that you need to know is translator software. This is software that allows
new programs to be written and run on computers, by converting source code into machine code. There are
three types that we'll cover in a lot more detail shortly:
Assembler - converts assembly code into machine code
Interpreter - converts 3rd generation languages such as javascript into machine code one line at a time
Compiler - converts 3rd generation languages such as C++ into machine code all at once
2. Application Software
Set of computer programs designed to permit the user to perform a group of coordinated functions,
tasks, or activities.
Types of Application Software
Word Processing Software: This software enables users to create and edit documents. The most
popular examples of this type of software are MS-Word, WordPad and Notepad among other text
editors.
Database Software: Database is a structured collection of data. A computer database relies on
database software to organize data and enable database users to perform database operations. Database
software allows users to store and retrieve data from databases. Examples are Oracle, MSAccess, etc.
Spreadsheet Software: Excel, Lotus 1-2-3 and Apple Numbers are some examples of spreadsheet
software. Spreadsheet software allows users to perform calculations using spreadsheets. They
simulate paper worksheets by displaying multiple cells that make up a grid.