What is inheritance in java and types of inheritance in Hindi ( जावा में इन्हेरीटेन्स क्या होते हैं और वह कितने प्रकार के होते है।)

Inheritance (इन्हेरीटेन्स) ;-    java  की class को reuse किया जा सकता है। या किसी नयी class को बनाकर पुरानी class की property दी जा सकती है। किसी पुरानी class से नही derived करने के तरीके को inheritance कहते है। पुरानी class को supper class या parent class कहते हैं। तथा इससे निकल के आने … Read more

what is java package API (java application program interface ) ?

Package:-  java में packege class तथा interface को group करने का एक तरीका है। जिसके जरिए  (1)    Class को कभी भी reuse किया जा सकता है। (2) Package के जरिए ही हम main class को hide कर सकते है। तथा उसके method use किया जा सकती है। (3)    दो अलग package में दो अलग class के नाम एक हो सकते है।   JAVA API PACKAGE :-  JAVA APPLICATION PROGRAM interface package classes का group है। जिसमें विभिन्न function के आधार पर classes को रखा गया है। इनके system … Read more

What is java byte code? जाने हिंदी में….

इस article में हम Java byte  code को hindi   व आसान भाषा में जानेंगे .. तो चलिए start करते हैं…… Byte code:- byte code एक प्रकार का optimized set व instruction हैं। जिसका निर्माण java run time environment time पर code को execute  करने के लिए किया जाता है। Byte code JVM पर run कराये … Read more

What iS Java virtual machine (JVM)? जाने हिंदी में…

यह एक Java  virtual machine है। जो कि computer को java के program चलाने में सहायता करती हैं। सन 1994 में Sun Microsystem ने 32 bit पर JVM का निर्माण किया था। JVM ऐसी virtual machine हैं। जो कि अपने अन्दर JVM के किसी भी code को run करा सकती हैं। JVM का architecture 32bit पर design … Read more

Addition of Two Number in Java programming

Hello दोस्तों! आज मैं आपको इस पोस्ट में Addition of Two Number in Java in Hindi के बारें में बताऊंगा, और इसके example को भी पढेंगे, तो चलिए शुरू करते हैं:- Addition of Two Number in Java public class Add Two Numbers { public static void main(String[] args) {    int x,y,z; int x=10; int y=20; z=x+y; System.out.println(“z”) } } Output: … Read more

what is Denial of Service attack in Hindi ?DOS क्या है

Denial Of Service (DOS attack) in Hindi:- distributed environment मे server service का response करता है इसके कारण एक authorize user की web page की request complete नहीं हो पाती है । ओर web server के crash होने की possibility बढ़ जाती है   DOS attack इस  प्रकार किया जाता है एक hacker एक remote program … Read more

what is proxy firewall in Hindi ? proxy firewall क्या है ।

what is proxy firewall in Hindi packet-filter firewall मे कुछ कामिया थी इसलिए proxy firewall develope की गयी, यह firewall application layer पर packet को filter करती है, यह firewall data packet के header को filter करने के साथ साथ data को भी filter करती है क्योंकि कोई malicious program data के साथ के साथ … Read more

what is Botnet in Hindi ? botnet क्या है

What is Botnet ? in Hindi यह internet के उन program का collection है, जो की आपस मे एक दूसरे से connect रहते है जिनकी help से एक request का response दिया जाता है botnet IRC(internet relay chat) को control करते है botnet application layer पर कार्य करते है यह group communication के लिए useकिए जातेहै Types … Read more