Skip to main content

Printer Types: Impact & Non-Impact Printers

Printers

A printer is an output device that prints characters, symbols and graphics on paper. The printed output is called hard copy. Printers produce permanent documents. Print resolution is commonly measured in dots per inch (dpi). A printer with higher print resolution, that is, dpi will produce higher quality print outs, but it will cost higher too.

Types of Printers

Depending upon the mechanism of printing, there different types of printers, as follows:
1) Impact Printers
2) Non-Impact Printers

1. Impact Printers

An impact printer works like a typewriter. It prints characters or images by striking a print hammer , a typeface or pins against paper and inked ribbon. We can say that impact printers do hit or impact an inked ribbon to print on a paper. Since, impact printers produce print outs by striking mechanism, they make a lot of noise, too. Print quality of impact printers is lower than print quality of non-impact printers. Printing cost or impact printers is lower than that of non-impact printers.

Types of Impact Printers

Dot Matrix Printer



A dot matrix printer is an impact printer. It produces printed images when tiny pins on a print head strike an inked ribbon. When the ribbon presses against the paper, it creates dots that form characters and graphics. The print head on a dot matrix printer can contain nine to twenty-four pins. Dot matrix printers use 100 to 300 DPI(dots per inch). Their speed is from 200 to 1000 characters per minute. Dot matrix printers generate a lot of noise. They do not produce a very high quality of print.

Drum Printer


Drum printer is an impact printer. It consists of a solid and cylindrical drum. The drum  has raised characters in bands on its surface. The drum rotates rapidly. For each print position, there is a print hammer to strike on ribbon and paper. The drum prints one line in one rotation. Since drum printer prints one line at a time, so it is called a line printer. Drum printer is a fast impact printer. It prints an entire line at a time. Its speed is measured in lines per minute (1pm). Many drum printers can print up to 2000 lines per minute.

Daisy Wheel Printer

Daisy wheel printer is similar to a typewriter. It uses a print wheel. The print wheel is called daisy wheel. Each petal of daisy wheel contains character. A motor rotates the wheel. A hammer strikes a petal against the ribbon when the desired character reaches the position on the paper. This prints the character on the paper. Daisy wheel printer is slower than dot matrix printer but better in quality. Daisy wheel technology is now found only in some electronic typewriters.Now-a-days mostly laser printers or ink jet printers are used.

2. Non-Impact Printers

A non-impact printer prints characters and graphics on a piece of paper without striking the paper. Some of these printers use spray ink while others use heat and pressure to create images. These printers are faster than impact printer. We can say that non-impact printers do not hit or impact an inked ribbon to print on a paper. Since, impact printers produce print outs by non-striking mechanism, they do not make a noise, Print quality of non-impact printers is higher than print quality of impact printers. Printing cost of non-impact printers is higher than that of impact printers.

Types of Non-Impact Printers

Laser Printer


Explain different Types of Printers Laser Printer

Laser printers are non-impact printers. The laser printer creates image on the paper by the laser beam. LASER stands for Light Amplification by Stimulated Emission of Radiation. Laser throws magnetic material powder on paper in the form of microscopic dots. The density of these dots ranges from 300 to 2000 Dots per Inch (DPI). The printing speed of laser printers is from 5 to 300 pages per minute (ppm). Laser
printers are also called page printers. They print complete page at a time. Laser printers produce very high quality print. They are faster than inkjet and dot matrix printers. Color printing with laser printers is Very costly. Laser printers are mostly used in business field.

Ink-jet Printer


Explain different Types of Printers Ink-jet Printer

It is a non-impact printer. It prints text and graphics by spraying tiny drops of liquid ink on paper. These printers can produce quality text and graphics in black and white and color. Ink jet printers are slower than laser printer. They can print 1 to 6 pages per minute. Ink-jet printers are relatively inexpensive than laser printer.

What are top Ten Differences between Impact and Non Impact Printers?

Comments

Popular posts from this blog

Explain different types of storage devices

Topic: Explain different types of storage devices in Computer systems Storage Devices Storage devices are used to store data and instructions permanently. Storage devices are also called secondary storage devices / backing storage devices / external storage devices or auxiliary storage devices. Examples of storage devices include Hard Disk, CD and DVD etc. Why Secondary Storage Devices are Used? Secondary storage devices are used because: Primary memory(RAM) is volatile and temporary. When computer is switched off, all data in ram is erased. Storage devices can store large amounts of data and instructions permanently whereas Primary memory has less capacity of storing data. Types Of Storage Devices There are three main types of storage devices:  Magnetic Tape   Magnetic Disk   Optical Disk   Flash Memory storage devices 1. Magnetic Tape Magnetic tape is the oldest storage device. It is made of plastic coated with magnetic material. Data is stored on mag

Important Objective Type Questions 101-155

MMC stands for multimedia card. SD stands for secure digital card. System Bus  is used to connect main components of a computer such as cpu and main memory. A Port is an interface or a point of attachments. POS stands for Point Of Sale terminal. ATM stands for Automated Teller Machine. PIN stands for Personal identification number. Kbps stands for kilobits per second. Mbps stands for megabits per second. A port that transmits one bit at a time is called Serial Port. A type of port that transmits many bits at a time is called Parallel Port. LPT stands for Line Printer. Examples of system software are Operating System, Utility Programs and Device Drivers. Examples of operating systems are DOS, Windows, Unix and Linux. Examples of Utility programs are File Manager, Image Viewer, Disk Scanner and File Compressor. Software used to detect and remove viruses is called Antivirus . Examples of antivirus programs are Mcaffee, Avast,

Convert Centimeters to Inches Python Programming | Python Program Conver...

YouTube Video Tutorial How to write a Python program to convert centimetres to inches Formula to convert centimetres to inches   Explanation of this Python Program This Python program prompts the user to enter a height in inches, converts it to centimeters, and then prints the converted value. It uses the conversion factor of 2.54 to perform the conversion and rounds the result to two decimal places before displaying it to the user. Here's an explanation of the provided Python program line by line: python inches = float ( input ( 'Enter the Height in inches to convert into centimeters:' )) This line prompts the user to enter a height in inches and assigns the entered value to the variable inches . The input() function is used to receive input from the user, and float() is used to convert the input into a floating-point number. python centimeters = inches * 2.54 This line calculates the equivalent value in centimeters by multiplying the inches variable by the conver