Skip to main content

TYPES OF COMPUTER

    Super Computer

Supercomputers are the fastest computer and have a large data storage capacity. A supercomputer can execute more than 100 million instruction per second.

It has multiple processors which are based on parallel processing architecture for achieving high speed. It is made for some special purpose. It can support more than 1000 users at a time. It is used for Space Research, satellite management, Wheatear forecasting Aerodynamics, and complex computation.

Ø First Indian Super Computer “PARAM2000”.

Ø The first supercomputer is CDC 6600 (designed by CDC Control Data Corporation in USA).

Ø The first five fastest supercomputer of the world are

1.      Summit (US)

2.    Sierra (US) ...

3.    Sunway TaihuLight (China) ...

4.    Tianhe-2 (China) ...

5.     Frontera (US)

Ø Speed of Supercomputer is measured in FLOPS.

Ø FLOPS (Floating Point Operation per Second).

MAINFRAME COMPUTER

A mainframe is a very large in size computer which is capable of supporting hundreds or even thousands of user simultaneously. It is designed for specific purpose.

Mainframe systems are used in Banks, hospitals, railways, educational institutions etc.

Examples: - IBM 4381, CDC cyber series, etc.

MINI COMPUTER

A minicomputer supports the working of several user at a time. It has a larger memory, high storage capacity & larger computing power than a microcomputer.

It has multiprocessing system and is capable of supporting upto 200 users simultaneously.

Example: HCL Magnum, VAX7500 etc.

It is used in big Organization for Computer Aided Design, industrial application, etc.

MICROCOMPUTER

A microcomputer is meant for a personal computer. It is a small size computer that has microprocessor chip as CPU. It is also called Desktop computer, PC, computer etc.

It was first developed by IBM (International Business Machines)

These are common, economical and easy to use. Examples IBMPC100,200  Apple Macintosh.

Personal Computers which are used at home, School and offices including desktops, laptops and tablet PC.

It is used for study, Entertainment, office works.

MOBILE

A mobile is a hand held, portable & wireless telecom device. The prime functionality of a mobile phone is to make Voice call, SMS and MMS.

With the advancement of computing technology, such phones are called smartphone.

Console Game

Console Game is a device that is primarily designed to play games with the help of keyboard & joystick that is displayed on a TV or Monitor.

Ex- Xbox, PlayStation series.

Embedded Computer

An embedded computer is a combination of computer & other device that is designed or made to serve a predefined or specific works.

Ex- ATM, Washing machine, Microwave Oven etc.        

BASED ON WORKING:-

ANALOG COMPUTER

Analogue computers are designed to process analogue data. Analogue data is continuous data that changes continuously and cannot have discrete values. We can say that analogue computers are used where we don't need exact values always such as speed, temperature, pressure and current.

DIGITAL COMPUTER

Digital computer is designed to perform calculations and logical operations at high speed. It accepts the raw data as input in the form of digits or binary numbers (0 and 1) and processes it with programs stored in its memory to produce the output. All modern computers like laptops, desktops including smartphones that we use at home or office are digital computers.

 HYBRID COMPUTER

Hybrid computer has features of both analogue and digital computer. It is fast like an analogue computer and has memory and accuracy like digital computers. It can process both continuous and discrete data. It accepts analogue signals and convert them into digital form before processing. So, it is widely used in specialized applications where both analogue and digital data is processed. For example, a processor is used in petrol pumps that converts the measurements of fuel flow into quantity and price.

Comments

Popular posts from this blog

Computer Generations

 Computer Generations   Computers have evolved over time through different generations, each marked by significant technological advancements and changes in design and architecture. These generations are often categorized based on the underlying hardware and the key developments that distinguish one Generation from another. Let's explore the main computer generations: First Generation Computers    The First Generation of computers refers to the initial period of electronic computing, characterized by the use of vacuum tubes as the primary electronic component. This Generation spans the 1940s and 1950s and is marked by groundbreaking developments in computer technology.  Examples of First-Generation Computers:  o ENIAC (Electronic Numerical Integrator and Computer): Completed in 1945, ENIAC was one of the first electronic general-purpose computers. It was designed to calculate artillery firing tables for the United States Army during World War ...

Programming in "C"

 Introduction   C is a general-purpose programming language that was developed in the early 1970s by Dennis Ritchie at Bell Laboratories. It has since become one of the most widely used programming languages and has influenced the development of many other languages, including C++, Java, and C#. C is known for its efficiency, flexibility, and low-level programming capabilities. It is commonly used for system programming, embedded systems, and developing operating systems. C is also a popular choice for developing applications that require high performance, such as game engines and scientific simulations.   Here are some key features and concepts of C programming:   Syntax: C has a relatively simple syntax compared to some other programming languages. It uses a combination of keywords, variables, data types, operators, and control structures to write programs.  Variables and Data Types: You declare variables to store data in C. Various d...

ARITHMETIC OPERATIONS ON BINARY NUMBER

Binary arithmetic is simpler to learn because binary number system deals with only two digits - 0 and 1. Binary number perform all arithmetic operation such as Addition, Substraction, Multiplication and compliment as in decimal number system. Binary Addition The addition table for binary arithmetic consist of only the following four entries: 0+0=0 0+1=1 1+0=1 1+1=0 , plus a carry of 1 to the next column.     1011        + 1100    10111     1100    + 1100     11000 Binary Substraction There are three ways to do substraction between binary numbers:- 1. Simple Substraction 2. Substraction using 1's Complement 3. Substraction using 2's Complement Simple Substraction: The complete table of binary substraction is as follows: 0-0=0 0-1=1, borrow 1 from next column 1-0=1 1-1=0    1101 - 0101   1000     1001   - 0111    0...