Skip to main content

generation of computer

 five types of computer generation

mostly we have five types of computer generation. meaning of generation if defined that in daily life computer is never look that typed. when computer started first and second generation is mostly analog computer. third , fourth and five generation computer is mostly the form of binary language.

generation of computer 

  1.  first generation of computer (vacuum tube) 1940-1956
  2.  second generation of computer (transistors)  1956-1963
  3.  third generation of computer (integrated circuit) 1964-1971
  4.  fourth generation of computer (microprocessor)  1971-present 
  5.  five generation of computer (artificial intelligence)  present and beyond

  • first generation computers: vacuum tubes (1940-1956)

the first generation of computer is mostly made by a vacuum tubes. vacuum tubes is like a electric bulb elements. its work with the help of heat energy. these type of computer is very expensive and huge. its fit on a one big room. these types of computer invented by the ENIAC and UNIVAC.
these vacuum tubes were used for calculation as well as storage control. the first generation of computers was the electronic numbrical integration and computer (ENIAC). built by J.presper.
  • second generation computers: transistors (1956-1964)

solid state components (transistors and diodes) and magnetic core storage formed the basis for the second generation of computer. the second generation of computer mostly made by the small transistors. transistors stored electricity. transistor was replaced the vacuum tubes . its very useful then the vacuum tubes. it is stored huge amount of data. its very less expensive then the vacuum tubes. 

example:- PDP-8, IBM-1400 series, IBM 1620, IBM 7090.
  • third generation computers: Integrated Circuits (1964-1971)
third generation of computer were introduced in 1964. transistors replaced by the semiconductors. it increased the speed of computer and decrease the cost per bits. In this typed of computers high level language has been developed.

example:- NCR 395, B6500, IBM 360, 370
  • fourth  generation computers: microprocessors (1971-present)

fourth generation of computers are made by the use of microprocessors. fourth generation computer started around 1971 by using the large scale integration (LSI). LSI element built on a single silicon chips called microprocessor. a microprocessor contains all the circuits required to perform arithmetic and logic and controls function. 

example:- Apple II, Alter 8800.
  • fifth generation computers: artificial intelligence (present and beyond)

fifth generation computer are based on artificial intelligence . fifth generation computers, based on artificial intelligence, are still in development though.
  there are some application , such as voice recognition , that are being used today artificial intelligence is the branch of computer science concerned with making computer behave like a human and allow the computer to take its own decision .




Comments

Popular posts from this blog

Database management syste

What is a database management system? Database management systems on z/OS A database management system (or DBMS) is essentially nothing more than a computerized data-keeping system. Users of the system are given facilities to perform several kinds of operations on such a system for either manipulation of the data in the database or the management of the database structure itself. Database Management Systems (DBMSs) are categorized according to their data structures or types. There are several types of databases that can be used on a mainframe to exploit z/OS®: inverted list, hierarchic, network, or relational. Mainframe sites tend to use a hierarchical model when the data structure (not data values) of the data needed for an application is relatively static. For example, a Bill of Material (BOM) database structure always has a high level assembly part number, and several levels of components with subcomponents. The structure usually has a component forecast, cost, and pricing data, and...
Here are some interesting facts about artificial intelligence (AI): Origins and Development: The term "artificial intelligence" was coined by John McCarthy in 1956 during the Dartmouth Conference, which is considered the birthplace of AI as a field. AI research has gone through several periods of optimism followed by "AI winters," where progress slowed and interest waned due to unmet expectations. Types of AI : Narrow AI : Designed to perform a narrow task (e.g., facial recognition, internet searches). Most of the AI systems we interact with today are narrow AI. General AI : Hypothetical AI that has the ability to understand, learn, and apply knowledge across a wide range of tasks at a human level. Superintelligent AI : An AI that surpasses human intelligence and capability. This is a theoretical concept and has not yet been achieved. Applications: AI is used in various fields, including healthcare (for diagnostics and treatment recommendations), finance (for fraud ...

Frontend Javascript Libraries for Web development

React.js   React.js (or simply React) is a popular open-source JavaScript library for building user interfaces, particularly for single-page applications where data changes dynamically over time. React was developed by Facebook and is maintained by Facebook and a community of individual developers and companies. Key Features of React Component-Based Architecture: Components : React applications are built using components, which are independent and reusable bits of code that describe a part of the user interface. Components can be class-based or function-based. Props : Short for properties, props are read-only attributes that are passed from parent to child components. State : State is a special object that holds data that may change over the lifecycle of the component. Components can update their own state and re-render when the state changes. JSX (JavaScript XML) : JSX is a syntax extension for JavaScript that looks similar to XML or HTML. It allows developers to write HTML-like c...