Skip to main content

THIRD GENERATION

THIRD GENERATION
Transistors were miniaturized and placed on silicon chips, called semiconductors, which drastically increased the speed and efficiency of computers 1964-1971: Integrated Circuits Instead of punched cards and printouts, users interacted with third generation computers through keyboards and monitors and interfaced with an operating system, which allowed the device to run many different applications at one time with a central program that monitored the memory. Computers for the first time became accessible to a mass audience because they were smaller and cheaper than their predecessors (System 360 Mainframe from IBM, PDP-8 Mini Computer from Digital Equipment Corporation) Read more...



CHARACTERISTICS
  1. ICs were used
  2. Small Scale Integration and Medium Scale Integration technology were implemented in CPU, I/O processors etc.
  3. Smaller & better performance
  4. Comparatively lesser cost
  5. Faster processors
  6. In the beginning magnetic core memories were used. Later they were replaced by semiconductor memories (RAM & ROM)
  7. Introduced microprogramming
  8. Microprogramming, parallel processing (pipelining, multiprocessor system etc), multiprogramming, multi-user system (time shared system) etc were introduced.
  9. Operating system software were introduced (efficient sharing of a computer system by several user programs)
  10. Cache and virtual memories were introduced (Cache memory makes the main memory appear faster than it really is. Virtual memory makes it appear larger)
  11. High level languages were standardized by ANSI eg. ANSI FORTRAN, ANSI COBOL etc
  12. Database management, multi-user application, online systems like closed loop process control, airline reservation, interactive query systems, automatic industrial control etc emerged during this period.

Comments

Popular posts from this blog

Create a nigerian news blog -4- Homepage Customization Finalized

My Love For Canada

It seems like these days, many people love this country of my first love, Canada, i have always dreamt of being in it as a full fledged citizen having the right to do anything as stated by the law for every citizen, I have my reasons for such love but you can simply take a deep dive into discovering more about the country and why I have such a strong love for  this country here . timbu.com/canada

Laravel one to one relationship with example

  Laravel one to one relationship with example “Laravel eloquent one to one relationship with example”: A one-to-one relationship is a very basic, fundamental Laravel eloquent relationship. Following our  complete guide to Laravel relationships , it simply relates one entity to another. For instance, in our voting application, a User is associated with one Vote. If we were to describe this relationship, we could say: “ Each user has one vote”. READ THE UPDATED VERSION HERE   Defining a one-to-one relationship In order to define this relationship, we call the  hasOne  method on the entity that owns the relationship. Here’s a code snippet defining the relationship. <?php namespace App \ Models ; use Illuminate \ Database \ Eloquent \ Model ; class User extends Model { /** * Get's this user's vote */ public function vote () { return $this ->hasOne(App\Models\Vote::class); } } What happens here is, we pass the n...