Skip to main content

Generations of Computer Part 2


Third Generation Computer

The period of third generation was from 1965-1971.

These computers were faster, smaller,generate less heat, consumed less space and less power and more reliable than first and second generation computers but these computers were still costly.The computers of third generation used Integrated Circuits (ICs) in place of transistors. A single IC has many transistors, resistors, and capacitors along with the associated circuitry.

This development made computers smarter, reliable, and efficient. In this generation remote processing, time-sharing, multi programming operating system were used. High-level languages like PASCAL PL/1, BASIC, ALGOL-68 were used during this generation.
Some of the third generation computers are as follow:
  1. IBM-360 series
  2. Honeywell-6000 series
  3. PDP (Personal Data Processor)
  4. IBM-370/168
  5. TDC-316

Fourth Generation Computer

The fourth generation was invented in 1971 and is still being used.Most of the people believe that 1980 was the time when people shifted to something more advance but the fact is these computers are still being used commercially. 

Computers of fourth generation used Very Large Scale Integrated (VLSI) circuits. VLSI circuits having about 5000 transistors and other circuit elements with their associated circuits on a single chip made it possible to have microcomputers of fourth generation.
Fourth generation computers became more powerful, compact, reliable, and affordable. As a result, it gave rise to Personal Computer (PC) revolution. In this generation, time sharing, real time networks, distributed operating system were used. All the high-level languages like C#, C++, JAVA etc., are used in this generation.
Some of the fourth generation computers are as follow:
  1. DEC 10
  2. STAR 1000
  3. PDP 11
  4. CRAY-1(Super Computer)
  5. CRAY-X-MP(Super Computer)

Fifth Generation Computer


Fifth generation computers are in developmental stage which is based on the artificial intelligence. The goal of the fifth generation is to develop the device which could respond to natural language input and are capable of learning and self-organization. Quantum computation and molecular and nanotechnology will be used in this technology. So we can say that the fifth generation computers will have the power of human intelligence.

Some Important QnA's

What is the difference between vacuum tubes and transistors?
The main difference is that transistors are faster and more reliable than vacuum tubes . One transistor is equivalent of 40 vacuum tubes.

Which generation computer produce most heat?
First generation computers produce the most heat.

ENIAC and super computers both are huge then what is the difference between these computers?
Although both are huge but super computers belong to fourth generation computers where as ENIAC belong to first generation computer.

back



Comments

Popular posts from this blog

Variables

Variables You may have been using variables and constants in since your 3rd grade. In any programming language same concept of variables is used which covers more than half of your code. Now is you have worked in C++ or Java or Python or any other programming language you may have used variables. If you are new to programming and you have started with C# its totally OK because you don't need any degree to learn programming. Now what are the variables, to be precise variables are the empty shells which can be filled to their limit and their value can variate with the passage of time as required and manipulated on desire.  Their are few types of variables: Types Examples Integral Types stype, byte, short, ushort, int, unit, long, ulong and char Floating Point Types Floating and Double Decimal Types Decimal Boolean Types True or False value, as assigned Nullable Types Nullable Data Types Declaration Moving on we have some rules for decl...
Theory of Automata Assignment #2 Part #2 Regular Expression # 6 The set of strings over {a,b} that contain at least two a's or exactly two b's. (a+b)*(a)(b*)a(a+b)*+a*b(a*)b(a*) Regular Expression # 7 The set of strings over {a,b} that contain even length but not multiple of 3 (aa*)(aaa^) Regular Expression # 8 The language over {a,b}contains exactly one double letter.   (ε + b)(ab) ∗aa(ba) ∗(ε + b) + (ε + a)(ba) ∗ bb(ab) ∗(ε + a)

Software Engineering Week 1

Software Engineering  Software engineering is an engineering discipline that concerns to all aspects of software development and software production. Mentioned above is the typical definition of software engineering that should develop a mind setup of a student who is wiling to learn development of software. Now when we talk about development of software, its life cycle pops into our minds which is being taught in almost every educational institution.  SDLC SDLC (Software Development Life Cycle) is the basic and core concept of Software Engineering. SDLC include few steps that should be followed strictly in order to develop a software. Most common terms used for those steps are: Analysis Designing Coding Testing Deployment and Maintenance   These steps are followed to develop a software. Firstly we should know what is a computer software. A computer software is nothing but computer program and associated documentation. Difference betw...