Skip to main content

Input output and processing device's

Input devices -
1) Mouse
2) Keyboard
3) Game controller
4) Scanner
5) Microphone

Input device means a device that provide data to computer for processing.
* Keyboard sends command to  computer
* Scanner scans the document or image and sends it to the computer.

Output devices -
1) Monitor
2) Printer
3) CD/DVD
4) Projector
5) Speaker

Output devices displays the information to the user or they collect
the information from the processing device.

* Monitor displays the information on the screen.
*Printer prints the information on paper.

Input/Output devices (I/O)
Input/Output devices works as both input and output devices.

Input/output devices-
1) USB flash
2) Hard disk

* USBflash stores information and also sends information to the computer. So *USB flash work as both input and output device.

Processing devices -
Processing device means a device which process the data
       Or
The devices which convert raw data into a useful information.

Processing devices -
1) CPU (Central processing unit)
2) GPU (graphics processing unit)
3) Motherboard
4) Memory (RAM)
5) Sound card

So basically processing device mean a device that process data.
* CPU process data
*GPU does graphics processing.

Comments

Popular posts from this blog

Apple is moving from Intel to ARM

       According to some rumours Apple is planning to use ARM chips instead of Intel in their Mac's. Apple plan to use their custom build ARM processors will be gadhe changer if everything goes well. Intel is facing difficulties in achieving their perfomance goal. If Apple's ARM processors outperforms Intel processors then it will great for Apple and their customers. By rumours it seems Apple 🍎 will launch their Mac's with ARM processors in fourth quarter of next year.  ARM processors generates less heat so it's easy to overclock, that will significantly boost their perfomance. Also ARM processors are very power efficient. Because of power efficiency of ARM processors we will notice increase in battery life of upcoming ARM based Mac's and MacBooks. If you don't know the difference between ARM and x86 then visit Difference between ARM and x86

How to install and use scrcpy on Linux?

In this article, you will learn how to install and use scrcpy on Linux. What is scrcpy? scrcpy is an application used to display and control the Android phone without installing any application on your android device and importantly it does not require any  root  access. Things you need to start using this application are listed below. 1) USB cable 2) Android phone with USB debugging on(Android 5.0 or above) 3) PC(Debian based os required) Installation sudo apt install scrcpy I prefer to use snap for installing scrcpy because snap store seems to have the latest package To install using snap use the following command snap install scrcpy Running scrcpy step 1) Plug an Android device(turn on USB debugging) using USB to your pc. step 2) open terminal and type scrcpy (or type scrcpy --help to see list of additional commands). If you want to know more about scrcpy click on the link below https://github.com/Genymobile/scrcpy Bonus:  You can also play games like among us using s...

how to use list data type in Python?

Where we can use Python 1) In web development using frameworks like Django and flask . ( Django has more features than flask but flask is good for lightweight web applications) 2) In data science and artificial intelligence.   (python has wide range of libraries and frameworks for data science and for artificial intelligence)     3)In Hacking   and in many other things Lists in python List is data   type  For complex programs we need to store and arrange large amount of data. For storing large amount of data we use lists, tuples and dictionary.  In this data type the values(data) are stored in the ordered sequence unlike dictionary.  Example of a list   -  Animal =  ['Tiger', 'Cat', 'Dog'] As you can able to see in above example, the list start and end with square brackets, [ ] We can store strings in a single or double quotes('string' or "string"). To separate the v...