Types of Software
Types of Software
Introduction
User
Appn Software
System software
Hardware
Types of Software
Type Of Software
Language Processor
System Software
The functions of all the physical components of a computer
system are guided by some instructions or program collectively
known as System Software. System Software controls all
internal activities inside a computer system and between all
attached components of a computer system.
TEXT BOX
DROP
DOWN
LIST
RADIO BUTTON
BUTTON
Touch Screen Interface
A touch screen is a computer/mobile display screen
that is allows user to interact with the application by
directly touching it by hand or by stylus. The screens
are sensitive to pressure; a user interacts with the
computer by touching pictures or words on the screen.
System Software - BIOS
The basic input/output system (BIOS) is also commonly
known as the System BIOS. The BIOS is boot firmware, a
small program that controls various electronic devices
attached to the main computer system.
It is designed to be the first set of instructions run by a
Computer when powered on. The initial function of the
BIOS is to initialize system devices such as the RAM, hard
disk, CD/DVD drive, video display card, and other
hardware.
Device Driver
A device driver is a system software that acts like an
interface between the Device and the user or the
Operating System. All computer accessories like Printer,
Scanner, Web Camera, etc. come with their own driver
software. These driver software help the operating system
and other application software to communicate with those
devices for optimal use
Language Processor
As discussed computer understand only binary language so
it is very difficult for the programmer to write the entire
program as a bunch of 0 and 1. So need arises to have a
language which is easy to write, learn and understand. The
solution was High Level Languages which used simple
English like statements to write the application.
Common Language processors are :
Compiler
Interpreter
Application Software
Application software runs on Operating system. It uses the
services of operating system to interact with hardware.
Set of software to carry out specific task like creating
documents (word processor ), calculations and analysis
(Spreadsheet), Presentations (Power point), Railway
reservation, library management etc.
It is of 4 type:
Utility software
Customized software
Developer tool
Utility Software
Utility software for efficient working of our computer and other task.
Various utility softwares available like
Text Editor : for storing short notes, message, coding. Examples
are : Notepad, Notepad++, WordPad
To-Do task : to manage the work.
Compression : to compress i.e. reduce the size of file to transfer
file from one computer to another. Examples are :
WinZip, WinRAR, jZIP etc.
Disk Defragmenter : Disk de-fragmentation utility software
speeds up the system by rearranging such fragmented files
stored on a disk in contiguous locations in order to optimize the
system performance.
Anti-Virus : to protect our computer from threats like Virus, worm,
Trojan horse, banking frauds etc.
General Purpose software
These are the common software used by everyone in
the world. Examples are:
Word Processing : for creating document, letters,
applications. Example : MS-Word, Writer etc
Spreadsheet : for storing data in tabular form, performing
simple calculation, visualization etc. Examples : MS-Excel,
calc.
Presentation : for creating personal of professional
presentation in attractive and interactive way. Examples:
MS-PowerPoint, Impress
Database : to store huge amount of data and also perform
queries on stored data. Examples: Oracle, MySQL, etc
Customized Software
These are tailored software i.e. it is created as per
the need of the customer for their specific
requirement like – for maintaining school operation,
Restaurant management, banking, Hotel, Hospital
management etc.
Compiler
Compilers are used to convert High Level Language
program to machine language
It convert the entire program in machine language
in one go.
If encounter errors, it report all the error along with
the line number.
It convert HLL code in machine code if all errors are
remove, once converted we can directly execute
program without interacting with the compiler.
Interpreter
It is also used for converting HLL into machine
language.
It translate the HLL code line by line as well as
execute at the same time.
If any error occurs, it stops the execution and report
the error.
Difference between Compiler and Interpreter
COMPILER INTERPRETER
It convert the HLL code to machine It convert the HLL code to machine
code in one go code line by line
It report all the error after compilation It report error for only that line where
error encountered
It execute program only when all It convert and execute simultaneously
errors are rectified
It is fast It is slow as compare to compiler
It takes less memory, because after It takes more memory because
conversion compiler is not required in Interpreter is required in memory with
memory with execution every execution.
Not suitable for debugging purpose Suitable for debugging purpose