Skip to main content

Computer Generation

 Always we came to know about the latest in the computer world.Lets now know the generation of the computer system through different times. 

Development through times


First Generation (Mechanical or electro mechanical) :
Calculators : Difference Engine
Programmable devices : Analytical Engine

Charles Babbage Analytical Engine











Second Generation (Vaccum tubes) :
Calculators : IBM 604,UNIVAC 60
Programmable devices : Colossus,ENIAC,EDSAC,EDVAC,UNIVAC 1,IBM 701/702,650,Z22





ENIAC
Third Generation (discreet trasistors and SSI,MSI,LSI Integrated circuits)
Mainframes : IBM 7090,System360
Minicomputer : PDP-8,System 36

PDP-8

Fourth Generation (VLSI integrated circuits)
Microcomputer : VAX,IBM System-1
4-bit : Intel 4004/4040
8-bit : Intel 8008/8080/Motorola 6800/Zilog 280
16-bit : Intel 8088/Zilog Z800
32-bit : Intel 80386/Pentium/Motorola 6800
64-bit : x86-64/Power PC/MIPS/SPARC
Embeded : Intel 8048,8051
Personal Computer : Desktop,Laptop,SOHO,UMPC,Tablet PC,PDA

Intel 4004






Motorola MC6800










Fifth Generation : Here Artificial Intelligence is making the ground.Some of them are Quantum computer,DNA computing,Optical computers etc.

Comments

Popular posts from this blog

UNIX : How to ignore lines with certain names

Sometimes we need to ignore multiple lines with certain words and get the list out of the file. usually it will be a log file to read . The below grep command can be used to ignore multiple words present in a text file. Lets say the file contain $ cat list.txt apple orange apple banana papaya Now we need to ignore line with orange , banana and papaya . So we can use the below grep command. $ cat list.txt | grep -Ev "orange|banana|papaya" apple apple It will ignore lines with the words in -v part of grep.

UNIX : unpack and pack using tar

Tarball or tar is a utility in linux to unpack or pack the files. Lets say we have a file name hello.tar.gz which is packed and compressed. To unpack the file use the below command > tar xvzf hello.tar.gz This is unpack the compressed tarball file to the directory hello in current location. To pack a list of files to a compressed tarball file , we can follow the below steps. Let say we have the following list of files in Hello directory. > cd Hello > ls helloworld.py README.txt Move back to parent directory and give the below command. > cd .. > tar zcvf hello.tar.gz Hello This will create the compressed tar file in the current location