answersLogoWhite

0


Best Answer

The difference is that serial transmissions only use 2 wires for transmitting and receiving data, and only 1 for sending or receiving, and can only send one bit at a time. Parallel cables use several wires for data transmission and is much faster than serial thus 8 or more wires are carrying data *parallel* to each other to it's destination. serial data

data (8 bits)

transmit -----------010101010-----------------> single line to transmit on

receive <--------------------------- single line to receive on Parallel data (80 bits)

transmit multiple lines simultaneously

---- 010101001----------->

-----------010101010----------->

-----------010101010----------->

-----------010101001----------->

-----------010101010----------->

-----------010101010----------->

-----------010101001----------->

-----------010101010----------->

-----------010101010----------->

-----------010101001----------->

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

7y ago

Think of the communication stream like a single laned road (serial) and a highway (parallel). Although the data is going in one direction, the data is sent bit-by-bit with serial communication (single lane road-car by car). With parallel the data is moved multi bits at a time (a multi lane highway going in the same direction with full of traffic) feature: serial communication means less number of wire and it is slow, one by one bit of message signal is send to receiver.parallel communication has so many numbers of wire & it is fast.

Serial communication : Modem.

Parallel Communication : Printer.

Serial Communications and Parallel communications both define a way of transportation of data over networks.

  • In Serial devices: transmit data bit-after-bit, serially over time. When 8 bits are received, after 8 bit-times (plus a little extra for signal synchronization), they are assembled back into a byte and delivered to the software. A serial link transmits a single stream of data.
  • In Parallel communication: a word of some data length, say like 8 bits, travels all at once, along multiple parallel channels (one channel per bit position). At the receiver, an 8-bit byte is received every "bit time". In effect, you have 8 serial channels transmitting and receiving data simultaneously, making it (by definition) at least 8 times faster than a single serial channel using the same transceiver technology.

From a system perspective, you can also refer to "parallel" channels for redundancy of critical serial streams, where multiple identical copies of data are sent simultaneously, and the receiver decides which data is valid, often by "voting" after detecting errors in the data on one or more channels. In this case, the parallel channels provide no increase in data throughput (compared to a single error-free channel), other than by reducing the need for time-consuming re-transmissions when errors are detected. It is a trade-off between speed and reliability. A parallel link transmits several streams of data (perhaps representing particular bits of a stream of bytes) along multiple channels (wires, printed circuit tracks, optical fibres.

Both serial ports and parallel ports are examples of computer technology that were once cutting edge, but now have been replaced by newer methods of transferring data from hard drives to ancillary devices. However, there are many personal computers and other devices in use today that make use of a serial port, a parallel port, or both. The difference between the serial and parallel port is not always understood, owing to the similar design of both ports. Here is some background on each type of port and what they were designed to accomplish.

Of the two, the parallel port is the older port design. The first use of a parallel port was in the early 1970's and allowed printers to be hooked directly into a mainframe and print orders carried out by entering a section of code through the command station. The parallel port allowed for a one way transmission of data from the source to the printer.

As the personal computer came into common use, the parallel port remained a popular option for attaching a printer to the hard drive of the system. In some circles, the port became commonly known as the printer port, since that function was the most common application of the device. Some manufacturers would go as far as customizing the design of the parallel port so that only certain types of printers could be used with certain brands of personal computers. However, by the mid 1990's, the parallel ports on most personal computers had been standardized to accommodate just about any make and model of printer.

In addition, the parallel printer became somewhat more functional, in that the design was used to provide one way communication between the hard drive and a number of ancillary devices. Early external modems and storage devices are a couple examples of the broader use of parallel ports. However, since the beginning of the 21st century, the parallel port has largely been replaced by the USB port, although some ancillary devices still allow for connection by both means.

One key difference between a serial and parallel port is that the serial port allows for data to be transferred in from a remote device or transferred out from the hard drive to a remote device. This two-way communication process makes it possible to connect workstations to larger terminals as well as a wide range of peripheral devices.

For most of the history of personal computers, both the serial and parallel port were the most common means of data transfer and communication. However, with both the serial and parallel port replaced by the use of USB ports, fewer new devices are designed to include either a serial or parallel port. Older personal computers that feature a serial and parallel port often require an adapter cable in order to make use of the latest generation of peripheral devices.

A Shift of Course

Here is an example of how the PC is moving "away'" from parallel to serial interfaces. Early generations have been apart of the parallel design that allows multiple bits sent simultaneously over several pins in parallel. The faster the bits are sent the better, but the timing of signals must be the same. This becomes more difficult with faster and longer connections.

A serial bus design is much simpler, sending 1 bit at a time over a single wire at much higher rates than parallel. By combining multiple serial data paths, even faster speeds can be realized that dramatically exceed the capabilities of traditional parallel buses.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Digital data transmission can occur in two basic modes: serial or parallel. Data within a computer system is transmitted via parallel mode on buses with the width of the parallel bus matched to the word size of the computer system. Data between computer systems is usually transmitted in bit serial mode . Consequently, it is necessary to make a parallel-to-serial conversion at a computer interface when sending data from a computer system into a network and a serial-to-parallel conversion at a computer interface when receiving information from a network. The type of transmission mode used may also depend upon distance and required data rate.

Parallel Transmission

In parallel transmission, multiple bits (usually 8 bits or a byte/character) are sent simultaneously on different channels (wires, frequency channels) within the same cable, or radio path, and synchronized to a clock. Parallel devices have a wider data bus than serial devices and can therefore transfer data in words of one or more bytes at a time. As a result, there is a speedup in parallel transmission bit rate over serial transmission bit rate. However, this speedup is a tradeoff versus cost since multiple wires cost more than a single wire, and as a parallel cable gets longer, the synchronization timing between multiple channels becomes more sensitive to distance. The timing for parallel transmission is provided by a constant clocking signal sent over a separate wire within the parallel cable; thus parallel transmission is considered synchronous .

Serial Transmission

In serial transmission, bits are sent sequentially on the same channel (wire) which reduces costs for wire but also slows the speed of transmission. Also, for serial transmission, some overhead time is needed since bits must be assembled and sent as a unit and then disassembled at the receiver.

Serial transmission can be either synchronous or asynchronous . In synchronous transmission, groups of bits are combined into frames and frames are sent continuously with or without data to be transmitted. In asynchronous transmission, groups of bits are sent as independent units with start/stop flags and no data link synchronization, to allow for arbitrary size gaps between frames. However, start/stop bits maintain physical bit level synchronization once detected.

Applications

Serial transmission is between two computers or from a computer to an external device located some distance away. Parallel transmission either takes place within a computer system (on a computer bus) or to an external device located a close distance away.

A special computer chip known as a universal asynchronous receiver transmitter (UART) acts as the interface between the parallel transmission of the computer bus and the serial transmission of the serial port. UARTs differ in performance capabilities based on the amount of on-chip memory they possess.

Examples

Examples of parallel mode transmission include connections between a computer and a printer (parallel printer port and cable). Most printers are within 6 meters or 20 feet of the transmitting computer and the slight cost for extra wires is offset by the added speed gained through parallel transmission of data.

Examples of serial mode transmission include connections between a computer and a modem using the RS-232 protocol . Although an RS-232 cable can theoretically accommodate 25 wires, all but two of these wires are for overhead control signaling and not data transmission; the two data wires perform simple serial transmission in either direction. In this case, a computer may not be close to a modem, making the cost of parallel transmission prohibitive-thus speed of transmission may be considered less important than the economical advantage of serial transmission.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

A serial interface uses a single wire for sending data. A parallel interface sends the data bits simultaneously on several ("parallel") wires.

A serial interface uses a single wire for sending data. A parallel interface sends the data bits simultaneously on several ("parallel") wires.

A serial interface uses a single wire for sending data. A parallel interface sends the data bits simultaneously on several ("parallel") wires.

A serial interface uses a single wire for sending data. A parallel interface sends the data bits simultaneously on several ("parallel") wires.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

serial no. are in a seres so the signal travels in a series one by one. But in parallel signals the signal travel paralerly direction they can be in a direction or in opossite so no. of signals can be pass simultaneously

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

A serial interface uses a single wire for sending data. A parallel interface sends the data bits simultaneously on several ("parallel") wires.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Differences between serial and parallel interfaces?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between Serial and Parallel Adder?

Some key differences between a Serial and Parallel Adder are that a Serial Adder is slower, a Parallel adder is a combinational circuit and the time required for addition depends on the number of bits in a Serial, but not a Parallel. A Serial Adder is a sequential circuit while a Parallel is a combinational circuit.


What are the two main types of IDE interfaces?

The main types are Serial and Parallel.


Why the serial interface are used nowadays than parallel interfaces that is faster?

cheaper because of fewer wires and other parts needed.


Which is faster serial interface or parallel interface?

It depends on the serial bit rate versus the parallel strobe cycle time but, in general, a parallel interface is faster than a serial interface. However, modern USB, Firewire, and SATA interfaces are very fast, and might be considered faster.


Which is the fast bus is it serial bus or parallel bus?

The things you have mentioned are interfaces. There are only three buses and these are Address, Data and the control bus


Difference between serial and parallel multiplier?

telidu nana...


Functions of an interface?

The functions of an interface is to connect two different items together and make them work. The most common interfaces are Parallel, Serial, USB, Infrared and PS/2.


What is the difference between serial robots and parallel robots?

series and parallel are different types of circuits that a robot can contain


Depends, is the device serial or parallel?

Depends, is the device serial or parallel?


Which of these technologies is considered a legacy port today because it has been replaced by other technologies in modern PCs?

With time there has been advance developments in Interfaces used by Devices & Peripherals to connect to computer has moved towards univeral standards for INPUT & OUTPUT interfaces. Earlier Keyboard & Mouse used to Connect to serial ports then moved towards PS2 ports and now USB ports. For Display VGA ports used earlier now uses DVI and HDMI interfaces. Printersused parallel ports now uses USB & Ethernet interfaces.Considering new interfaces today PS2, Serial, Parallel and VGA Ports can be considered as Legacy ports.


Which is quicker serial or parallel?

parallel


What is the differences between a streak plate technique and a serial dilution technique?

what is serial dilution and spread plate technique