Skip to main content

SECOND GENERATION

SECOND GENERATION
The transistor was far superior to the vacuum tube, allowing computers to become smaller, faster, cheaper, more energy-efficient and more reliable than their first-generation predecessors. Though the transistor still generated a great deal of heat that subjected the computer to damage, it was a vast improvement over the vacuum tube.Second-generation computers still relied on punched cards for input and printouts for output. Second-generation computers moved from cryptic binary machine language to symbolic, or assembly, languages, which allowed programmers to specify instructions in words. High-level programming languages were also being developed at this time, such as early versions of COBOL and FORTRAN. These were also the first computers that stored their instructions in their memory, which moved from a magnetic drum to magnetic core technology. The first computers of this generation were developed for the atomic energy industry.
(Manufacturers – IBM 7030, Digital Data Corporation’s PDP 1/5/8 Honeywell 400)
Read more...


CHARACTERISTICS
  1. Transistors were used in place of vacuum tubes. (invented at AT&T Bell lab in 1947)
  2. Small in size
  3. Lesser power consumption and better performance
  4. Lower cost
  5. Magnetic ferrite core memories were used as main memory which is a random-access nonvolatile memory
  6. Magnetic tapes and magnetic disks were used as secondary memory
  7. Hardware for floating point arithmetic operations was developed.
  8. Index registers were introduced which increased flexibility of programming.
  9. High level languages such as FORTRAN, COBOL etc were used - Compilers were developed to translate the high-level program into corresponding assembly language program which was then translated into machine language.
  10. Separate input-output processors were developed that could operate in parallel with CPU.
  11. Punched cards continued during this period also.
  12. 1000 fold increase in speed.
  13. Increasingly used in business, industry and commercial organizations for preparation of payroll, inventory control, marketing, production planning, research, scientific & engineering analysis and design etc.

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...