Posts

Showing posts from August, 2022

Display Processor in Computer Graphics in Hindi

Image
 इस Article में हम Display Processor in Computer Graphics in Hindi के बारे में पढ़ेंगे। जिसमे पढ़ेंगे What is Display Processor in Hindi , Parts of Display processor in Hindi , Types of Display Processor in Hindi आदि।  Display Processor in Computer Graphics in Hindi Display Processor एक प्रकार का Interpreter होता है। जो की Display Processor Code को Picture में Convert करता है। ये Display Processor Code CPU से ली गयी Digital Information होती है। जिसे Analog value में Display Devices की आवश्यकता अनुसार Convert करते है।  Parts of Display Processor in Hindi  Display file Memory Display Processor Display Generator Display Console Display File Memory  इसका Use Picture को Generate करने के लिए तथा Graphic entities को Generate करने के लिए किया जाता है।  Display Processor इसका Use Instruction को Interpret करने के लिए किया जाता है।  Display Generator इसका use Character, Curves को generate करने के लिए किया जाता है।  Display Console  ये Keyboard, Light Pe...

Conceptual Framework for Interactive Graphics in Hindi

Image
 इस Article में हम Conceptual Framework for Interactive Graphics in Hindi के बारे में पढ़ेंगे। जिसमे पुरे Interactive Graphics के system को जानेगे।  Conceptual Framework for Interactive Graphics in Hindi High Level Conceptual Framework Interactive Graphics के लिए Input and Output, Graphics System, Application Program और Application Model से बना हुआ है। जैसे की आप नीचे Image में देख सकते है।  इसमें Computer Input Devices के माध्यम से Input लेता है। और Images का Output Display devices के माध्यम से देता है।  इस तरह से Input and Output Devices को Conceptual framework के hardware Component कहा जाता है।  Conceptual Framework में तीन तरह के Software Component होते है।  Application Model Application Program Graphics System Application Model  Application Model उन सभी data और Objects को capture करता है, जो की screen पर चित्रित होते है। ये Data और Objects के बीच सम्बन्ध को भी capture करता है।  Application Program ये Application Model बनाता है। Object के Attr...

Self Invoke Function in Javascript in Hindi

Image
 Self Invoke Function in Javascript in Hindi - यहाँ पे हम Javascript के Self Invoke Function के बारे में पढ़ेंगे।  Self Invoke Function in Javascript in Hindi Self-Invoking Function को Immediately Invoked Function Expressions (IIFE) भी कहा जाता है। जैसे की नाम से पता चल जाता है। Immediately Invoked Function है। ये Function Define करने के बाद में तुरंत execute होते है। इन्हे Call करने की आवश्यकता नहीं होती है। इन Function का कोई नाम नहीं होता है। इन्हे Function लिखकर Parentheses के माध्यम से लिखा जाता है।  Syntax of Self Invoke function in js in Hindi  Javascript में हम 3 प्रकार से Self Invoke Function को Create कर सकते है। हम तीनो के syntax देख लेते है।  First Type  ( function () { // body of the function }()); Second Type (() => { // … })(); Third Type  (async () => { // … })(); चलिए अब देखते है First Type से  Javascript में इन Function को कैसे लिख सकते है।  <script> (function(){ var pi = 3.141; document.write(pi)...

Modules in Nodejs in Hindi - Nodejs Modules in Hindi

Image
 इस Article में Modules in Nodejs in Hindi के बारे में पढ़ेंगे। जिसमे पढ़ेंगे What is Modules in Nodejs in Hindi , Types Of Modules in Nodejs in Hindi , How to use modules in Nodejs in Hindi आदि।  What is  Nodejs in Hindi  Nodejs में Modules Set of Functions (Functions का Set) होता है। जिसे हम अपने Nodejs Application में Include कर सकते है।  Modules एक Block of Code होता है, जिसका Code हम अपने Project में Reuse कर सकते है। ये Same javascript Library की तरह होता है। जिसका use करने से हमें ज्यादा Code लिखने की आवश्यकता नहीं पड़ती है। Types of Nodejs Modules in Hindi  Nodejs में Three types के Modules होते है।  Core Modules   Local Modules Third Party Modules  1. Core Modules Nodejs Core Modules में  Minimum Functionalities include होती है। ये Nodejs Process Start होते ही Automatically Load हो जाते है। लेकिन इनको पहले हमें अपने project में Import करना होता है। इनको हम Require Function की मदद से Import (Load) कर सकते ...

Java Programming Language सीखने की Tips

Image
 Java High Level Interpreted Programming Language बहुत सी development के लिए प्रयोग की जाती है। आज का ये article Java Programming Language सीखने की Tips के बारे में है। जहाँ Java की Basic जानकारी तथा Java सीखने के Course, वेबसाइट्स के बारे में पूर्ण रूप से जानने को मिलेगा। Java Programming Language सीखने की Tips Java क्या है ? Java एक Programing Language है। जिसे सन 1990 में Computer वैज्ञानिक A Gosling ने Sun Microsystems के साथ मिलकर Create किया था। java के द्वारा Software, Java Application आदि को Develop किया जाता है जिसे Multiple Platform पर Run किया जा सकता है। Java के लिखे गए code को Compiled code और Byte code के नाम से जाना जाता है। जिसे Windows, Linux, Mac OS, Operating System OS आदि पे Run कर सकते है। Java के Program को Desktop, Mobile Devices, Smart Cards, Blu-ray Discs (BD) Servers आदि में पाया जाता है। Java सरल है या कठिन Java के Syntax काफी अधिक आसान है। और Java Language, C++ Language की तरह है। इसलिए जो व्यक्ति C++ Language को जानते है वो Java Language को आसानी से सीख...