Skip to main content

What are Dual Devices or Both Input/ Output Devices

The devices that can be used to perform both functions -input and output- are called Dual Devices. These devices are also called Dual Purpose Devices or Both Input/Output Devices. With the help of a dual purpose device, we can enter data into computer as well as we can output data from the computer to outside world.  For example, Dual devices include:  Touch Screen Monitor, Modem, Network Interface Card, Sound card, Hard disk drive, Floppy disk Drive, Magnetic Tape Drive CD-Writer and DVD-Writer etc. These are also called Input/output devices, because they perform both functions.
  • Touch Screen Monitor
Dual Devices or Both Input / Output Devices - Touch screens
Dual Devices or Both Input / Output Devices - Touch screens
Touch Screen Monitor is an input/output device. It uses a special touch sensitive screen. The User can enter data by touching icons or menus on the screen. As soon as the user selects a command from menu, output is displayed on screen. Commonly touch screen monitors use sensors to detect touch of finger.

  •      Headset

A headset may be considered as both Input / Output device, because it has a microphone for voice input and small speaker phones for  sound output.

Examples of Dual Devices or Both Input / Output Devices - headsets
Example of Both Input / Output Devices - headsets

Headsets are used for video conferences and video calls through SKYPE and other such free software to make video calls.
  • Modem
Modem is example of Dual device
Internal modem

External modem

Modem stands for Modulator / Demodulator. Modem is a communication device.  It makes possible receiving data from internet into our computer (input) and sending data from our computer to another computer on internet(output).  It performs two functions: Modulation (converting digital signal into analog signal) and Demodulation(converting analog signal to digital signal). It makes possible receiving data from internet into our computer (input) and sending data from our computer to another computer on internet(output). Modem sends and receives data from one computer to another through telephone lines. It links your personal computer to the Internet through your ISP (Internet Service Provider). A telephone line supports only analog signals, whereas computer accepts only digital signals. So when a computer wants to send data to another computer, digital data is converted into analog data before placing on telephone line. The process of converting digital signal into analog signal is called Modulation. Similarly, on the receiving computer, modem converts analog data (from telephone line) into digital data, before it is entered into receiving computer. The process of converting analog signal into digital signal is called Demodulation.
  • NIC - Network Interface Card
NIC is Example of Dual devices
NIC or LAN card - NIC is Example of Dual devices

NIC stands for Network Interface Card. It is used to link network computers for transmitting data. With the help of NIC our computer can receive  data, instructions and information from another computer (input). NIC will also be helpful to send data from our computer to another computer on the network (output). NIC is also called a LAN card, local area network card or LAN adapter.

  • Sound Card
Sound card is Example of Dual devices
Sound card or audio card

A sound card is a computer component that facilitates the input and output of audio signals to and from a computer. A speaker produces audio output with the help of sound card. In addition we use microphone to input our voice into computer with the help of sound card. 
  •     Hard disk Drive
Dual devices or both input output devices

Hard disk drive is an input/output device. It has read/write heads to read data from hard disk(input) and to write data to hard disk(output).
  • Floppy disk Drive
Dual devices or both input output devices

Floppy disk drive is an input/output device. It has read/write heads to read data from floppy disk(input) and to write data to floppy disk(output).   
  • Magnetic Tape Drive
Dual devices or both input output devices

Magnetic Tape drive is an input/output device. It has read/write heads to read data from magnetic tape(input) and to write data to magnetic tape(output).
  • CD-Writer / CD-Recorder
Dual devices or both input output devices
CD-Writer is an input/output device. It is used to store data on CD. It is used to read data from CD(input) and to write data to CD(output).
  • DVD-Writer / DVD-Recorder
Dual devices or both input output devices

DVD-Writer is an input/output device. It is used to store data on DVD. It is used to read data from DVD(input) and to write data to DVD(output).

Comments

Popular posts from this blog

Types Of Headings In HTML

HTML Hedings Headings in HTML are used to display Titles, Sub-Titles of Sub-Sub-Titles for your web page text. There are six types of headings in HTML. H1 is the largest heading and H6 is the smallest heading. <H1> is opening tag whereas </H1> is the closing tag for the largest heading. The text between <h1> and </h1> will be displayed as the main Title in your web page. Following are the six tags used for six types of headings in HTML. <H1> ... </H1> <H2> ... </H2> <H3> ... </H3> <H4> ... </H4> <H5> ... </H5> <H6> ... </H6> The H1 heading is used for main titles. Actually H1 heading will show the text in largest font size. H2 headings is used for Sub-Titles. H2 displays text in smaller font size than H1, H3 displays text of font size smaller than H1 and H2, and so on. H1 is for largest heading in a text page and H6 is for smallest heading.   Importance Of Headings in SEO H...

HTML Table Tag Basics

Tables Tables are very important to show data in the form of rows and columns. Tables make data more readable and easy to understand. A table consists of rows, columns and cells. HTML Tags To Make A Table As we know that there are basically three elements in a table, that is, rows, columns and cells. So, there are the following basic tags to create a table in an HTML web page: <TABLE> tag <TR> tag <TD> tag <TH> tag   <TABLE> Tag <Table> tag is used to specify the start of a table. It also specifies some attributes of the table like ALIGN and BORDER attributes etc. Example 1: <Table>                    => Table without a border. Example 2: <Table border="1">     => Table with a border of width 1. Example 3: <Table align="left" border="2">  => A left aligned Table with a border of width 2. ...

Bus Topology Advantages Disadvantages

Bus Topology Bus topology is the simplest network topology . In bus topology , all computers in network are connected to a common communication wire. This wire is called BUS. Terminators are used at both ends of wire. Bus Topology is Cheap, easy to handle and implement. Bus Topology require less cable. Bus Topology is best suited for small networks. Working of Bus Topology with Advantages and Disadvantages Advantages of Bus Network Topology 1. It is very simple topology . 2. It is easy to use. 3. It needs small amount of wire for connecting computers. 4. It is less expensive due to small wire needed. 5. If one computer fails, it does not disturb the other computers in network. Other computers will continue to share information and other resources with other connected computers. Disadvantages of Bus Network Topology 1. Only small number of computers can be connected in a bus network . 2. Network speed slows down as the number of computer increases in b...