Skip to main content

Computer Fundamentals in Hindi

Computer Fundamentals in Hindi

- कंप्यूटर फंडामेंटल्स हिंदी में -


Computer Fundamentals in Hindi




कंप्यूटर का परिचय

कंप्यूटर शब्द अंग्रेजी के "Compute" शब्द से बना है, जिसका अर्थ है "गणना", करना होता है इसीलिए इसे गणक या संगणक भी कहा जाता है, इसका अबिस्कर Calculation करने के लिए हुआ था, पुराने समय में Computer का use केवल Calculation करने के लिए किया जाता था किन्तु आजकल इसका use डाक्‍यूमेन्‍ट बनाने, E-Mail, Listening And Viewing Audio And Video, Play Games, Database Preparation के साथ-साथ और कई कामों में किया जा रहा है, जैसे बैकों में, शैक्षणिक संस्‍थानों में, कार्यालयों में, घरों में, दुकानों में, Computer का उपयोग बहुतायत रूप से किया जा रहा है।

Computer केवल वह करता है जो हम उसे करने का कहते हैं यानि केवल वह उन Command को फॉलो करता है जो पहले से Computer के अंदर डाले गए होते है, उसके अंदर सोचने समझने की क्षमता नहीं होती है, Computer को जो व्यक्ति चलता है उसे यूजर कहते है, और जो व्यक्ति Computer के लिए Program बनता है उसे Programmer  कहा जाता है।


कंप्यूटर को ठीक प्रकार से कार्य करने के लिए सॉफ्टवेयर और हार्डवेयर दोनों की आवश्यकता होती है। अगर सीधी भाषा में कहा जाये तो यह दोनों एक दूसरे के पूरक है। बिना हार्डवेयर सॉफ्टवेयर बेकार है और बिना सॉफ्टवेयर हार्डवेयर बेकार है।

मतलब कंप्यूटर सॉफ्टवेयर से हार्डवेयर को कमांड दी जाती है किसी हार्डवेयर को कैसे कार्य करना है उसकी जानकारी सॉफ्टवेयर के अंदर पहले से ही डाली गयी होती है। कंप्यूटर के सीपीयू से कई प्रकार के हार्डवेयर जुड़े होते हैं, इन सब के बीच तालमेल बनाकर कंप्यूटर को ठीक प्रकार से चलाने का काम करता है सिस्टम सॉफ्टवेयर यानी ऑपरेटिंग सिस्टम।


x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x


कंप्यूटर का जनक कौन है

कंप्यूटर का जनक चार्ल्स बैबेज को कहा जाता है, चार्ल्स बैबेज का जन्म लंदन में २६ दिसंबर १७९१ में हुआ था।

चार्ल्स बैबेज को कंप्यूटर का पिता माना जाता है।  बैबेज को अंतिम अधिक जटिल डिज़ाइन करने के लिए और उनके नेतृत्व में पहले यांत्रिक कंप्यूटर की खोज करने का श्रेय दिया जाता है। उन्हें अन्य क्षेत्रों में अपने विविन्ना कामो के लिए भी जाना जाता है और उन्हें अपने समय में काफी लोकप्रियता और सम्मान भी मिलता है।

वहां की आधिकारिक भाषा अंग्रेजी है तो अंग्रेजी से ही कोई शब्द क्यों नहीं लिया गया इसकी वजह यह है उसके तकनिकी शब्द खासतौर पर प्राचीन ग्रीक भाषा और लैटिन भाषा पर आधारित है इसलिए कंप्यूटर शब्द के लिए यानी एक ऐसी मशीन के लिए जो गणना करती है उसके लिए लैटिन भाषा के शब्द कंप्यूट (Comput) को लिया गया

बैबेज के द्वारा निर्मित अंतर इंजन के कुछ हिस्सों को लंदन साइंस म्यूजियम में प्रदर्शनी के लिए रखा गया है। १९९१ में, एक पूरी तरह से कार्य कर रहा अंतर इंजन बैबेज की मूल योजना से निर्माण किया गया था।


x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x


कंप्यूटर का फुल फॉर्म

हिंदी में -

सी - आम तौर पर
- संचालित
एम - मशीन
पी - विशेष रूप से
यु - प्रयुक्त
टी - तकनिकी
- शौक्षणिक
आर - अनुसन्धान


* कंप्यूटर एक ऐसी मशीने है जिसका प्रयोग आमतौर पर तकनिकी ओर शौक्षणिक अनुसन्धान के लिए किया जाता है


इंग्लिश में -

C - Commonly
O - Operated
M - Machine
P - Particularly
U - Used
T - Technical
E - Educational
R - Research


* Commonly Operated Machine Particularly Used in Technical and Educational Research


x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x-x

























Comments

Popular posts from this blog

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());

Concurrency Control

What is Concurrency Control? Concurrency Control in Database Management System is a procedure of managing simultaneous operations without conflicting with each other. It ensures that Database transactions are performed concurrently and accurately to produce correct results without violating data integrity of the respective Database. Concurrent access is quite easy if all users are just reading data. There is no way they can interfere with one another. Though for any practical Database, it would have a mix of READ and WRITE operations and hence the concurrency is a challenge. DBMS Concurrency Control is used to address such conflicts, which mostly occur with a multi-user system. Therefore, Concurrency Control is the most important element for proper functioning of a Database Management System where two or more database transactions are executed simultaneously, which require access to the same data. Potential problems of Concurrency Here, are some issues which you will likely to face wh...

Top 10 Most Famous Photographers of All Time

*Top 10 Most Famous Photographers of All Time* If you want to take truly memorable and moving photographs, you can learn something by studying the pictures of famous photographers. Some of the most beloved artists are deceased, but some are still delighting us with their photographs. The list below includes some of the more famous photographers that still impact our lives today. 1. *Ansel Adams* is probably the most easily recognized name of any photographer. His landscapes are stunning; he achieved an unparalleled level of contrast using creative darkroom work. You can improve your own photos by reading Adams’ own thoughts as he grew older, when he wished that he had kept himself strong enough physically to continue his work. 2. *Yousuf Karsh* has taken photographs that tell a story, and that are more easily understood than many others. Each of his portraits tells you all about the subject. He felt as though there was a secret hidden behind each woman and man. Whether he captures a gl...