Java “Final” Keyword In Hindi

Java “Final” Keyword Java language में final keyword का प्रयोग constant को denote करने के लिए किया जाता है। अर्थात यदि आपने final keyword की सहायता से कोई variable बनाया है तो variable को एक बार assign की गई वैल्यू को आप change नहीं कर Read more

Java “static” Keyword in Hindi

Java “static” Keyword जावा लैंग्वेज में static keyword का उपयोग मुख्य रूप से memory management के लिए किया जाता है।  इसका प्रयोग variables, methods, blocks और nested classes के साथ किया जा सकता है। इनके बारे में देखे तो instance variable जब class में declare Read more

Java ” this ” Keyword in Hindi

“this” keyword  in Hindi this keyword एक reference variable है जिसका प्रयोग किसी एक method या constructor में current object को refer करने के लिए किया जाता है. जब program में Instance variable और Local variable दोनों same ही होते है | इसीलिए जब instance Read more

Java Inheritance in Hindi – इनहेरिटेंस क्या है ?

Java Inheritance In Hindi : inheritance एक ऐसा mechanism है। जिसमे एक class की properties और methods को किसी दुसरे class में उपयोग किया जा सकता है | अर्थात child class अपने parent class के properties और methods को inherit करती है।parent class को  base Read more

Features of Java in Hindi

Features of java in Hindi  Simple  :  जावा एक simple लैंग्वेज है क्योकि इसको आसानी से learn और समझ सकते है और इसके syntax भी easy होते है | Object-Oriented  : जावा एक OOP लैंग्वेज है। जावा में सब कुछ एक Object है। Object, class, Read more

What is JRE & JVM in Hindi ?

What is java virtual machine – JVM क्या है ? JVM का पूरा नाम java virtual machine है | ये एक प्रकार की वर्चुअल मशीन है | जो runtime environment उपलब्ध करता है | जावा के प्रोग्राम को run करने क लिए हमे JVM की Read more

How to install java ?

How to install java & set the path ? java download link :- https://www.oracle.com/technetwork/java/javase/downloads/index.html note :- java 12.0.1 is the latest version for the java SE plateform. step 1:-  open your web browser & search download java . or click on this link :- https://www.oracle.com/technetwork/java/javase/downloads/index.html Read more

What is APPLET ?

JAVA – APPLET Applet is a type of java program . Applet is embedded in the web pages and create/design  the dynamic web page / content. Applet program runs inside web browser and works client sides. Applet are use to create the dynamic and entertaining Read more