Skip to main content

Input device and Output device example in Hindi

~ Input device and Output device example in Hindi


Input Device and Output Device
(Image Source - Google Images)

इनपुट डिवाइस (Input Device) -

कीबोर्ड (Key Board) - इस डिवाइस के माध्यम से कंप्यूटर को कुछ विशेष जानकारी या निर्देश प्राप्त होते हैं। कीबोर्ड का उपयोग टाइपिंग और हिसाब करने के लिए भी किया जाता है।

माउस (Mouse) - इस उपकरण का उपयोग कर्सर नियंत्रण के लिए चिकनी सतहों पर किया जाता है। इसका उपयोग चित्र बनाने में भी किया जाता है।

स्कैनर (Scanner) - यदि आप कंप्यूटर को बाहर से इमेज भेजना चाहते हैं तो यह डिवाइस बहुत महत्वपूर्ण है। विभिन्न छवियों और उपयोगी दस्तावेजों को स्कैन करने के लिए स्कैनर्स का उपयोग किया जाता है।

जॉयस्टिक (Joystick) - इस डिवाइस का उपयोग कंप्यूटर पर गेम और वीडियो गेम खेलने के लिए किया जाता है।

माइक्रोफ़ोन (Microphone) - इस डिवाइस के माध्यम से किसी भी ध्वनि या वातावरण को कंप्यूटर पर पूरी तरह से भेजा जा सकता है। जिसे बाद में विभिन्न रिकॉर्डिंग में इस्तेमाल किया जाता है।

लाइट पेन (Light Pen) - माउस के जैसा अन्य डिवाइस कंप्यूटर स्क्रीन पर चित्र बनाने के लिए आवश्यकता होती है।

वेब कैमरा और डिजिटल कैमरा (Web Camera and Digital Camera) - इस डिवाइस का उपयोग तस्वीरें लेने और उन्हें कंप्यूटर पर भेजने के लिए किया जाता है। कई बार यह डिवाइस इंटरनेट पर काफी काम आती है।

ट्रैकबॉल (Trackball) - मुख्य रूप से मेडिकल या चिकित्सा क्षेत्र में आवश्यक होता है। माउस के स्थान पर प्रयोग किया जाता है। जब ट्रैकबॉल संलग्न होता है, तो कर्सर स्क्रीन पर चलता रहता है।


आउटपुट डिवाइस (Output Device) -

मॉनीटर (Monitor) - हम कंप्यूटर का प्राथमिक परिणाम मॉनिटर के माध्यम से प्राप्त करते हैं इसीलिए इसे विजुअल डिस्प्ले यूनिट (Visual Display Unit) या VDU कहा जाता है।

प्रिंटर (Printer) - हम कंप्यूटर का परिणाम मुख्य आउटपुट डिवाइस के माध्यम से प्रिंटिंग के माध्यम से प्राप्त करते हैं। जिसे स्थायी माना जाता है।

स्पीकर (Speaker) - एक अतिरिक्त आउटपुट डिवाइस के माध्यम से हम संगीत या किसी भी प्रकार की ध्वनि सुनते हैं जिसे कंप्यूटर से सुना जा सकता है।

प्लॉटर (Plotter) - प्लॉटर का उपयोग इंजीनियरिंग या चिकित्सा अनुप्रयोगों के लिए चित्र या अन्य छवियों को प्रिंट करने के लिए किया जाता है।

Comments

Popular posts from this blog

Natural Language Processing (NLP)

What is Natural Language Processing (NLP) ? Natural Language Processing (NLP)* is a field of artificial intelligence (AI) that focuses on the interaction between computers and humans using natural language. It involves the development of algorithms and models that enable computers to understand, interpret, and generate human language. Here are key aspects of NLP: 1. *Text Understanding:* NLP systems aim to comprehend the meaning of written or spoken language. This involves tasks such as text classification, sentiment analysis, and named entity recognition. 2. *Speech Recognition:* NLP extends to processing spoken language, converting audio signals into text. This technology is used in voice assistants, transcription services, and more. 3. *Language Generation:* NLP systems can generate human-like text. This is employed in chatbots, language translation services, and content generation. 4. *Machine Translation:* NLP is fundamental to machine translation systems that enable the automatic...

JS Code for Generating OTP

JS Code for Generating OTP -  * Learn how to create a simple JavaScript function to generate a random 4-digit OTP. (GENERATED BY - ChatGPT) function OTP() { let otp = ""; otp = Math.floor(Math.random() * 9000 + 1000); return otp; } console.log("Your OTP is-", OTP());

How To Make Symbols With Keyboard

HOW TO MAKE SYMBOLS WITH A KEYBOARD (Image By - Sharma Guides | Subham232330) Alt + 0153 :   ™  (trademark symbol) Alt + 0169 :   ©  (copyright symbol) Alt + 0174 :   ®  (registered trademark symbol) Alt + 0176 :   °  (degree symbol) Alt + 0177 :  ±  (plus-or-minus sign) Alt + 0182 :   ¶  (paragraph mark) Alt + 0190 :   ¾  (fraction, three-fourths) Alt + 0215 :   × (multiplication sign) Alt + 0162 :   ¢  (thecent sign) Alt + 0161 :   ¡  (upside down exclamation point) Alt + 0191 :   ¿  (upside down question mark) Alt + 1 : ☺ (smiley face) Alt + 2 :   ☻ (black smiley face) Alt + 15 :   ☼  (Sun) Alt + 12 :   ♀  (female sign) Alt + 11 :   ♂  (male sign) Alt + 6 :   ♠  (spade) Alt + 5 :   ♣  (Club) Alt + 3 :   ♥  (Heart) Alt + 4 :   ♦  (Diamond) Alt + 13 :   ♪  (eighth note...