Skip to main content

What are Different Types of Input Devices With Examples

Topic: Different types of input devices of a computer system with examples, pictures and explanation: 

Topics Covered are:

  • Definition of Input Devices

  • Functions of Input Devices ( How input devices work? )

  • Examples of Input Devices

  • Pictures / Images of different input devices

Different Examples of Input Devices With Description

  1. Keybboard
  2. Mouse
  3. Trach Ball
  4. Trackpad
  5. Joy Stick
  6. Light Pen
  7. Microphone
  8. Scanner
  9. Graphic Tablet ( Digitizer )
  10. Digital Camera
  11. Touch Screen ( I/O Device / Dual Device - Perform Both Functions input + Output )

INPUT DEVICES ( Definition )

Input devices are used to enter data and instructions into computer memory from external world. Input Device is a hardware part of the computer that is used to enter data and instructions into computer memory. The examples of input devices include: Keyboard, Mouse, Track ball, Track Pad, Joy stick, Touch Screen, Light pen,  Scanner, Digital Camera, Microphone, Graphics tablet etc. They (input devices) perform three main functions.
Different Types of input devices with examples and description of each computer
Different Types of input devices with examples and description of each computer


Three Functions of Input Devices

Input devices perform three main functions:
  1. Input devices Receive data from user. For example,  user enters data from keyboard by typing numeric number 5
  2. Input devices  Convert data into binary form [the language of 0 and 1 also called the machine language. Machine language   is the only language, a computer can understand directly.]

For example decimal number 5 will be converted to binary number 101.
5/2     quotient =2  remainder =1
2/2     quotient =1  remainder =0
1/2     quotient =0  remainder =1
so we write remainders from bottom to top (101) which is binary equivalent of decimal 5.
  1. Provide converted data in binary form (101) to computer memory for processing.

Following are the introduction to some popular types of input devices:

1.     Key board


different types of input devices of computer - keyboard
different types of input devices of computer - keyboard

Keyboard is the most familiar input device. It is most widely used input device to enter data and instructions into the computer. Keyboard has a set of keys like a typewriter. It has alphabetic keys for A,B,C…Z or a,b,c,…z. It has numeric keys like 0,1,2,3,…9. It has function keys F1, F2,…,F12 used to perform specific tasks.
It has other keys used for editing like Delete, Backspace, Home, End, etc.

2.    Mouse

Mouse input device on computergap.com
Mouse -  Types of input device
Mouse is an input device used to control motion of the pointer on screen. A mouse has two or three buttons. These mouse buttons are called Left, Right and Middle button respectively. Buttons are used to perform different functions. A mouse has a rubber or metal ball inside its body. Mouse is rolled over a flat surface called mouse pad. The movement of ball is detected by internal circuits of mouse. These circuits convert this movement into digital signals, which are sent to computer. Mouse is used in graphical applications. It is also used for playing video games on computer.

3.    Track Ball

Track Ball
Track ball - a type of pointing input device
Track Ball is an input device like a mouse. It is a pointing input device. It is used in Lap top / notebook computers to control motion of pointer on screen. It is a pointing device like upside down mouse. It has a ball on its upper side. This ball is moved by fingers or thumb and the pointer moves accordingly on screen.

4.    Track Pad

Touch Pad
track pad / touch pad input device

Track pad is a pointing input device. It is used in Lap top computers to control motion of pointer on screen. Track pad is a stationary input device. It has a flat surface of 1.5 to 2 square inch. Finger is moved on this surface to move pointer on screen.

5.    Joy stick


Joy Stick
Joy stick - example of input device used for playing computer games














Joystick is an input device used to play games on computer. It is used to control motion of an object quickly in game with the help of a hand held stick. This stick can be moved forward, backward or side ways. This stick is mounted on a ball. When stick is moved then ball is moved and signals are sent to the computer.

6.    Light Pen


Light Pen
Light pen use as an input device

Light pen is an input device consisting of a special pen that is connected to a computer's monitor. The user points at the screen with the pen and selects items or chooses commands either by pressing a clip on the side of the light pen or by pressing the light pen against the surface of the screen (the equivalent of performing a mouse click).

7.    Microphone


Micro phone
Microphone: input device to enter sounds and voice in computer

Microphone is an input device used to enter sounds into the computer. We can record sounds in computer with the help of microphone and sound card.

8.    Scanner


Scanner
Scanner - another example of input device

Scanner is an input device. It is used to save pictures or text on paper into computer memory. It converts picture or text on paper in to binary form and saves it in computer memory. With the help of scanner we may save our time to type a lot of text. For example, if we have a book and wish to enter the whole text of book in to computer. It will be a long, tedious and time consuming job. But if we use a scanner, we can do this with in less time. We can scan each page of book. Editing of the scanned text is also possible. So our job will become very easy with the help of a scanner.
There are different types of scanners.

9.    Graphics tablet / digitizer


Digitizer Graphic Tablet
Graphic Tablet - digitizer


A graphics tablet consists of a special pen called stylus and a flat pad. The image is created on the monitor screen as the user draws it on the pad with the help of stylus (special pen). Graphics tablet is also called a digitizer. 

10. Touch Screen

Touch Screen Monitors
Touch Screen - Input/Output device - Dual device - Performs both input and output functions - I/O device


In ATM and in latest smart phones, touch screen is used to receive input from the user. The user enters data by the touch of his finger on different menu options or icons present on touch screen. Actually touch screen is both input / output device. It performs both functions.

11. Digital Camera

Digital Camera for video and picture input
Digital camera - Input device

A digital camera is one of the latest input devices. We can take pictures with he help of digital camera. These pictures are saved on digital camera's internal memory. There is no need of a film role as used in traditional cameras. Later on we can easily input these pictures with the help of a data cable into computer's memory. Latest digital cameras can take still snapshots and can record video as well. 

This is all about Different Types of Input Devices for Computer with pictures / examples.


Comments

Popular posts from this blog

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

Converting Decimal Number system to Binary, Octal and Hexa Decimal with Examples and Vice Versa

Topics covered with examples: Converting Decimal Number system to Binary, Octal and Hexa Decimal with Examples and Vice Versa Number Systems in Computer Science and Conversion Method Conversion of Decimal number system to other  number systems Conversion of Decimal number system to binary number systems Conversion of Decimal number system to octal number systems Conversion of Decimal number system to hexadecimal number systems Conversion of    non-decimal Number system to Other non-decimal number system Conversion of other number systems to Decimal number system Conversion of binary number systems to Decimal number system Conversion of octal number systems to Decimal number system Conversion of  hexadecimal number systems to Decimal number system Q1. What is a Number System? What are different types of number system? Number system A number system is a set of digits, symbols and rules to express quantities in counting and c...

Find Your Correct Age From Date of Birth

First of all click on First two digits to type Month number from keyboard like any number from 1 to 12. . Now click on next two digits and type day number of month that is date from 1 to 31. In the last step type the year of your birth in four digits like 1995.  Now click on the blue button with text "Calculate Age". Your accurate age will be displayed below the button. For example. If today is 09-16-2023 that is September 16, 2023 and you type birth date as 11-01-2000 that is November 1, 2000, your accurate age will be displayed as:Your age is 22 years, 10 months, and 15 days. Age Calculator Age Calculator Calculate Your Age Now! Enter your date of birth: Calculate Age As shown in the image below: