Skip to main content

What are Different Types of Computer

Computers can be divided into the following 3 types on the basis of their working mechanism:

1) Analog Computers

2) Digital Computers

3) Hybrid Computers

1. Analog Computers

Analog computer is used to measure continuous values. It measures a physical property like voltage, pressure, speed, time and temperature. An analog computer takes input in analog form and gives output in analog form.
Its output is usually displayed on a meter or scale. Analog computer has low memory and fewer functions. Analog computer is mainly used in the field of engineering and medicine. Examples include:

Examples of Analog Computers include:


analog computer examples thermo meter

examples of analog computer speedo meter
 1. Thermometer
2. Speedometer
3. Analog clock

2. Digital Computers

A digital computer works with digital data. Digital computer uses binary number system. Binary number system consists of only two digits 0 and 1. A digital computer represents data in digital signals. A 0 represents OFF and a 1 represents ON. Digital computer performs arithmetic and logical operations on data. It gives output in digital form.
Digital computers are very fast. These computers can store results. They have large Memory(that is data storing capacity). Today most of the computers used in offices and homes are Digital computers.
Examples:

examples of digital computer personal computer

1. Personal Computer-(also called PC or Micro Computer)
2. Digital Score board
3. Digital watch

3. Hybrid Computers

A hybrid computer is a combination of both analog and digital computer. Hybrid ccomputer can handle both analog and digital data. A hybrid computer combines the best characteristics of both the analog and digital computer. It can accept data in both analog and digital form.
Examples:

1. Hybrid computer devices are used in hospitals that may calculate patient's heart function, temperature and blood pressure etc. This calculation may be converted into numbers and shown in digital form. For example,


The Vital Signs Monitoring unit

also called VSM in short. It has Blood Pressure monitor, ECG monitor, respiratory monitor, and is also used for monitoring anesthesia.
2. Hybrid computers are also used in spaceships and missile system.
3. Hybrid Computer Machines are generally used in scientific applications
4. Hybrid computers are used for controlling industrial processes.
Next Read Differences between Analog and Digital Computer 

Further Suggested Reading:

Comments

laptops said…
Great Nice........:)
laptops said…
plzzzz tell me how i can get google adsense account plzzzz tell me......thnksssssss..

Popular posts from this blog

Explain Main Difference Between System Software and Application Software

Topic: Explain Main Difference Between System Software and Application Software            Differentiate between system software and application software Before , explaining the main differences between application software and system software, let us know the definitions of Application software and System software with examples. What is System Software: System software is a set of programs to control all components of computer and to manage overall operations of computer system. Differences between System software and application software System software is used as a base to install and run all application software. Examples of system software include: Operating Systems, like Microsoft Windows, DOS, Unix and Linux Device Drivers like Device driver software of a Printer (found on CD normally provided with the printer) Utility Programs like AVAST anti virus, Disk Scanners and File Viewers etc. What is Applicat...

How Functions are Used in Excel Fast and Easy Way 3

What is a Function in Microsoft Excel? Microsoft Excel provides a large number of Functions for processing data in Excel Worksheets easily. Functions are predefined formulas in Excel. These functions are used in different types of calculations on numerical or other data  quickly. How a Function is Used in Microsoft Excel? There are three popular ways to use built-in functions in Microsoft Excel. 1. Type Functions Manually 2. Use Function Library Commands 3. Use Insert Function Dialogue Box Other Microsoft Excel Topics on www.ComputerGap.com  Microsoft Excel Formulas and Functions Fast and Easy Way -1 Using Simple Formulas in Excel With Arithmetic Operators 2 How Functions are Used in Excel Fast and Easy Way 3 Create Bar Chart in Excel Easily by Example Employee Pay sheet Formulas in Microsoft Excel  Students Test Score Grades Result Sheet in Excel Electricity Bill Calculator Formulas in Excel    Microsoft Office Word Pro...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...