What is the difference between JDK,JRE and JVM

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ต.ค. 2024

ความคิดเห็น • 231

  • @GroudFrank
    @GroudFrank 9 ปีที่แล้ว +166

    Wow, that accent is hard to understand BUT you've explained this to me better than anyone else has. *Thanks man!*

    • @dongapuremangesh1352
      @dongapuremangesh1352 9 ปีที่แล้ว +3

      Really he is too good

    • @BrijeshYadav-vl7bj
      @BrijeshYadav-vl7bj 9 ปีที่แล้ว +4

      That's One of Indian accent :P

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  9 ปีที่แล้ว +4

      *****
      View 42 videos on Collections in Java,
      th-cam.com/video/rI3VkItC0eA/w-d-xo.html
      View 5 videos on JSF,
      th-cam.com/video/rAa1wwWLw1Y/w-d-xo.html
      View 50 videos on Oracle,
      th-cam.com/video/pX5WJctn3Kw/w-d-xo.html
      View 35 videos on Hibernate,
      th-cam.com/video/SZ8abQ3vmdc/w-d-xo.html
      View 115 videos on Data Structures,
      th-cam.com/video/oAAiBQFSEik/w-d-xo.html
      View 58 videos on Struts,
      th-cam.com/video/nYqsnrHGsQg/w-d-xo.html
      View 74 videos on Spring,
      th-cam.com/video/YpsFT50mths/w-d-xo.html
      View 41 videos on CRT,
      th-cam.com/video/fDRnKPyvR14/w-d-xo.html
      View 12 videos on JAVA Reflections API & Annotations
      th-cam.com/video/BxCw0uTxZRs/w-d-xo.html
      View 39 videos on Java Real Time Project Implementation on Spring,Struts & Hibernate,
      th-cam.com/video/iKnb0AgKZJ0/w-d-xo.html

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  9 ปีที่แล้ว +2

      Durga Software Solutions
      View 9 videos on ENUM,
      th-cam.com/video/T1fMWwI9D1E/w-d-xo.html
      View 16 videos on Serialization,
      th-cam.com/video/bIzfrvdt7qM/w-d-xo.html

    • @comicarena9568
      @comicarena9568 8 ปีที่แล้ว +3

      +Brijesh Yadav *South Indian accent.

  • @SINHASAMEER
    @SINHASAMEER 7 ปีที่แล้ว +20

    I had been going crazy to understand the difference between them from some time. You explained it in a very efficient manner. Thanks for clearing the concepts

  • @pmbhagat077
    @pmbhagat077 6 ปีที่แล้ว +12

    read few books... few blogs / web pages.... and watched few videos on java.
    this is the first (and I guess last video one needs to watch) I watched that cleared all my doubts about JDK, JRE and JVM. you are simply great Durga sir. wish you had training center here in Mumbai too.

  • @rafaelruales6871
    @rafaelruales6871 5 ปีที่แล้ว +10

    I didn't understand a lot of the things he said, however, somehow, now I understand the difference!! thanks!

  • @umermustafa2560
    @umermustafa2560 4 ปีที่แล้ว +8

    He is such a genius concept directly went into my brain through my skull and made space for itself..

  • @81_monish_roy74
    @81_monish_roy74 หลายเดือนก่อน +1

    Durga sir's teaching is like a bottle of wine. With time it gets more and more understandable. Thank you sir. You are a gem of India

  • @shivendrapandey9918
    @shivendrapandey9918 2 ปีที่แล้ว +9

    Perfect.. Understood the concept
    JDK is a kit So it Allows both Compilation(JDK\bin -- > Javac ) and Execution (JDK\bin -- > java),
    Since JRE for only for Run time Env, So it allows only execution(JRE\bin -- > java).

  • @princeagyeifrimpong9889
    @princeagyeifrimpong9889 4 ปีที่แล้ว +9

    No wonder all the best students in my class are from Asia ... I watched the video and understood it properly 🙏🏽🙏🏽... God Bless you Durga

  • @Icecodes
    @Icecodes 5 ปีที่แล้ว +9

    He has an interesting way of getting your attention, the java preacher man. great teacher

  • @saurabrakshit405
    @saurabrakshit405 5 ปีที่แล้ว +3

    Sir you have explanied this to me better than anyone else has so simple way of teaching sir like it lot...........

  • @bhaskar_5168
    @bhaskar_5168 6 ปีที่แล้ว +35

    Thats why South Indian engineers are Super perfect in programming..

  • @jaganmohanreddypenumuru6834
    @jaganmohanreddypenumuru6834 11 หลายเดือนก่อน +1

    Excellent ! Sir , u explained so nicely that I feel you are my Guru and God .Thank You.

  • @jyotijuneja3771
    @jyotijuneja3771 ปีที่แล้ว +1

    very well explanation and u have capability to fit ur explanation permanent thanks alot my teacher not explain properly ur videos helping too much

  • @dheerajsinghrajput6894
    @dheerajsinghrajput6894 6 ปีที่แล้ว +5

    i had never seen a Teacher like You
    heartiest thanks sir
    you are just Wonderful

  • @hirakmondal6174
    @hirakmondal6174 6 ปีที่แล้ว +22

    *_JRE_* : Java Runtime Environment. It is basically the Java Virtual Machine where your Java programs run on. It also includes browser plugins for Applet execution.
    *_JDK_* : It's the full featured Software Development Kit for Java, including JRE, and the compilers and tools (like JavaDoc, and Java Debugger) to create and compile programs.
    Usually, when you only care about running Java programs on your browser or computer you will only install JRE. It's all you need. On the other hand, if you are planning to do some Java programming, you will also need JDK.
    Sometimes, even though you are not planning to do any Java Development on a computer, you still need the JDK installed. For example, if you are deploying a WebApp with JSP, you are technically just running Java Programs inside the application server. Why would you need JDK then? Because application server will convert JSP into Servlets and use JDK to compile the servlets. I am sure there might be more examples.

    • @venkatkrishna266
      @venkatkrishna266 4 ปีที่แล้ว

      you should not teach this to a beginner

    • @vaibhavshukla1054
      @vaibhavshukla1054 2 ปีที่แล้ว +1

      Thanks Hirak it made things more clear to me.

  • @viveksukhla8631
    @viveksukhla8631 4 ปีที่แล้ว +11

    Not bashing it being a Indian...
    But, no one other than a India man in a classroom can explain anything this clearly..
    Hats off

  • @SonuKumar-fr9xu
    @SonuKumar-fr9xu 4 ปีที่แล้ว +4

    Thanq so muchh... Since last many times was confused... Now i got this point... Great teacher💯

  • @prandeepsingh7451
    @prandeepsingh7451 6 ปีที่แล้ว +6

    Sir..... You are International teacher....... People are here from China and Pakistan too. Keep it up!

  • @ronnybanerjee6020
    @ronnybanerjee6020 7 ปีที่แล้ว +3

    I have seen a lot of your tutorials and I'm simply left dumbstruck and just listen to your awesome explanations. All these helped me a lot and I finally became your fan. Now I just can't wait to listen to your terrific accent and learn new things!! Thank you sir :-)

  • @sriindu1
    @sriindu1 8 ปีที่แล้ว +3

    Superb explanation and its crystal clear now regarding the differences... thanks Sir...

  • @pankajkharade6936
    @pankajkharade6936 3 ปีที่แล้ว +3

    lots of thanks for easily explaining concepts👍👍

  • @phanindrareddy1667
    @phanindrareddy1667 8 ปีที่แล้ว

    sir, your explnation is very clearly.... Anybody all memebrs are understanding ur teaching

  • @saurabhdubey14
    @saurabhdubey14 4 ปีที่แล้ว +1

    thank you sir.... today whatever i am is bcoz of u.... thanks alot

  • @keplervelasco1854
    @keplervelasco1854 5 ปีที่แล้ว +3

    Best Java teacher!! Greetings from Mexico!!

  • @MananBhardwaj
    @MananBhardwaj 8 ปีที่แล้ว

    i feels proud to hear name INDIAN ARE GREAT.
    such a very easy language of teaching.

  • @likithagunda5842
    @likithagunda5842 8 ปีที่แล้ว +3

    It's really helpful..Thank u very much Durga Sir for your effort to make this understand!!!

  • @stith_pragya
    @stith_pragya 11 หลายเดือนก่อน +1

    Thank You So Much for this wonderful video.....🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

  • @TheHijam
    @TheHijam 8 ปีที่แล้ว

    Nice explain Durga sir, I am clearly understand about JDK,JRE and JVM, Thanks

  • @venkat757
    @venkat757 3 ปีที่แล้ว +1

    Short and clean.... Thank you sir

  • @aishwaryasinnur2256
    @aishwaryasinnur2256 ปีที่แล้ว +1

    really you explain very clearly...tq so much sirrrr

  • @Govindyatnalkar
    @Govindyatnalkar 4 ปีที่แล้ว +6

    Evergreen Gold to JAVA platform!!!

  • @chandrachood1
    @chandrachood1 7 ปีที่แล้ว +7

    Really great video and very good explaination. wondering by any chance do you have a video that explains difference between Client side developement vs server side development? if so can you please share

  • @marklopez4566
    @marklopez4566 6 ปีที่แล้ว +3

    Thank man! I now understand what are all those about.

  • @swathichilkuri3453
    @swathichilkuri3453 7 ปีที่แล้ว

    good clarity about the differences between JDk, JRE, JVM.

  • @zaidi82
    @zaidi82 7 ปีที่แล้ว +4

    sir you are very good teacher greetings from pakistan.

  • @knknareshknk
    @knknareshknk 6 ปีที่แล้ว +2

    If he improves english skills, he is definately a good trainer...I like this at any time.thanks

  • @abirpaul9027
    @abirpaul9027 2 ปีที่แล้ว +1

    Even after 6000 years people will see these videos to learn Java by the Java God

  • @dineshamgoth8549
    @dineshamgoth8549 6 ปีที่แล้ว +2

    The explanation is very clear. Thank you sir

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  6 ปีที่แล้ว

      Hello Dinesh.
      Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos.
      For more videos,
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28

  • @shikhazusthi2903
    @shikhazusthi2903 7 ปีที่แล้ว

    your way of teaching is very good.thanku so much sir

  • @swatigunjal991
    @swatigunjal991 3 ปีที่แล้ว +1

    Your explanation is mindblowing

  • @chitralarora2012
    @chitralarora2012 5 ปีที่แล้ว +1

    even a layman can get it...awesome explanation

  • @trollsanditrollsvediveditrolls
    @trollsanditrollsvediveditrolls ปีที่แล้ว +1

    If any one shows the better than this man in java for them life time settlement. ......

  • @kelvinsmith4894
    @kelvinsmith4894 7 ปีที่แล้ว +5

    *jdk used to come alone without jre but java started giving out the both as combo*

  • @deepakrai5175
    @deepakrai5175 3 ปีที่แล้ว +1

    quckest and simplest explanation . :)

  • @ameyjain7676
    @ameyjain7676 9 ปีที่แล้ว +3

    Thank you sir. I think you can add some more depth to the topics in this video.

  • @brunofilgueiras3518
    @brunofilgueiras3518 6 ปีที่แล้ว +1

    best explanation ever, well done sir...

  • @sreejitha3285
    @sreejitha3285 7 ปีที่แล้ว

    Easily understood the difference. Thank you.

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  7 ปีที่แล้ว

      Hi Sreejith. Thank you very much for your feedback

    • @harendrasingh8978
      @harendrasingh8978 7 ปีที่แล้ว

      What is the role and responsibilities of class loader sub system

    • @harendrasingh8978
      @harendrasingh8978 7 ปีที่แล้ว

      How many times of java code is checked before exciting the program

  • @clindodevassy1083
    @clindodevassy1083 8 ปีที่แล้ว

    Very helpful video, its clean and precise.

  • @raushanchaudhari5025
    @raushanchaudhari5025 7 ปีที่แล้ว

    thanks for teaching I have confusion but now cleared

  • @manneshivakumar844
    @manneshivakumar844 9 ปีที่แล้ว

    Thank you Durga Sir... u r simply superb..

  • @poojakukreti8618
    @poojakukreti8618 5 ปีที่แล้ว +2

    The audio quality is horrible. I wish durga sir made new videos on Java 😢

  • @satishgaikwad550
    @satishgaikwad550 3 หลายเดือนก่อน +1

    He is a modern Chanakya for students,he is a master

  • @AmitGadekrishnadas
    @AmitGadekrishnadas 5 ปีที่แล้ว +2

    What is the difference Anna ?? .... Nice explanation!

  • @srirammanda9697
    @srirammanda9697 8 ปีที่แล้ว

    sir..,very good explanation..very much useful..

  • @workoncause-nr6wl
    @workoncause-nr6wl 2 ปีที่แล้ว +1

    best explanation on youtube...

  • @dikshakatake5739
    @dikshakatake5739 7 ปีที่แล้ว

    Wow....sir.....u r just awesome.....thanku Soooo much....🙏

  • @dorababurednam9
    @dorababurednam9 3 ปีที่แล้ว +1

    Tnq sir,I have this doubt ,when i start learning java

  • @jinagagiribabu7891
    @jinagagiribabu7891 2 ปีที่แล้ว +1

    such a great explanations sir

  • @utkarshkhare1181
    @utkarshkhare1181 3 ปีที่แล้ว +1

    Thanks sir, I got it all cleared 🙏

  • @sivaneshwariv563
    @sivaneshwariv563 5 ปีที่แล้ว +1

    You have very nice teaching skills sir

  • @karthickm3517
    @karthickm3517 2 ปีที่แล้ว +1

    Your are my best inspiration sir

  • @tajdarkhanafridi2222
    @tajdarkhanafridi2222 7 ปีที่แล้ว

    Very nice explanation
    Thanks ..

  • @GopalRoy-nn6ft
    @GopalRoy-nn6ft 7 ปีที่แล้ว

    good explanation.! diagram was awesome sir...!

  • @dgvloggs7365
    @dgvloggs7365 7 ปีที่แล้ว +2

    a great explanations sir thanks
    :- dipesh

  • @sonupriya5342
    @sonupriya5342 2 ปีที่แล้ว +1

    Superb explanation sir 👏

  • @divyagorantla7542
    @divyagorantla7542 2 ปีที่แล้ว +1

    Super explaintion sir tq

  • @nishantparaskar3644
    @nishantparaskar3644 4 ปีที่แล้ว +1

    when we create simple
    class demo {
    public static void main(String args[])
    {
    System.out.println("Hello world");
    }
    }
    and using cmd we fire command
    1.javac demo.java
    2.java demo
    how internally it call jvm???
    do any other command fire to call jvm???
    if any command fired to call jvm then please tell .
    how os call jvm internally???

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  4 ปีที่แล้ว

      Hello Nishant.
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28

  • @radhya5608
    @radhya5608 5 ปีที่แล้ว +1

    At client side we have to installed only jre but jre is also available in jdk which means at both sides we need jdk naa?

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  5 ปีที่แล้ว

      Hello Jatin.
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28

  • @prathameshpatil5373
    @prathameshpatil5373 7 ปีที่แล้ว

    sir tushi great ho.....
    your are the god of java......

  • @yemiya
    @yemiya ปีที่แล้ว +1

    Nice explanation sir ❤

  • @TheReddKite
    @TheReddKite 6 ปีที่แล้ว

    I am Indian and still find his language hard to understand but still good explanation

  • @kartikn1619
    @kartikn1619 9 ปีที่แล้ว

    thank u very much sir .. please keep sharing

  • @VenkySura
    @VenkySura 8 ปีที่แล้ว

    simply superb explanation sir

  • @rohanlekamge
    @rohanlekamge 5 ปีที่แล้ว +2

    Nicely Explained.. 👍👌

  • @simranjitsandhu7891
    @simranjitsandhu7891 7 ปีที่แล้ว

    very good explanations. thanks

  • @nallavamshi451
    @nallavamshi451 6 ปีที่แล้ว +2

    I need total DurgaSoft Java Class Videos

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  6 ปีที่แล้ว

      Hello Vamsi. For All Java Class Videos,
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28

  • @marshalcraft
    @marshalcraft 8 ปีที่แล้ว

    Ok, so you have basice core technology which is jvm. If includes compiler java program then jdk. If not jre?

  • @sagarsapkota8415
    @sagarsapkota8415 ปีที่แล้ว +1

    what do we mean by development tool respected Durga sir?

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  ปีที่แล้ว

      Hello Sagar.
      Plz contact our Offline team durgasoftoffline@gmail.com or call us on this number +91 - 8852885296/97/63/64

  • @poojachary6363
    @poojachary6363 7 ปีที่แล้ว

    excellent tutorials for beginners

  • @Akash-hx1ny
    @Akash-hx1ny ปีที่แล้ว +1

    That's why he is called "the father of Java".

  • @emilefeltesse
    @emilefeltesse 3 ปีที่แล้ว +2

    Conclusion for developers: just install a JDK. Right?

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  3 ปีที่แล้ว

      Hello Emile.
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28

  • @manishabayya5747
    @manishabayya5747 7 ปีที่แล้ว

    wow explained very well....tq sir....

  • @rshubhankar11
    @rshubhankar11 6 ปีที่แล้ว +1

    Sir you change my life..

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  6 ปีที่แล้ว

      Hello Shubhakar.
      Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos.
      For more videos,
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28

  • @g.mohanphanindra
    @g.mohanphanindra 2 ปีที่แล้ว +1

    Thank You 🙏

  • @46614161
    @46614161 9 ปีที่แล้ว +19

    Indian English ,hard to understand :P . but good tutorial

    • @46614161
      @46614161 9 ปีที่แล้ว

      *****
      Yes. respectful too

    • @dustbin8934
      @dustbin8934 9 ปีที่แล้ว +4

      ***** Mr:sourav it is not south indian english it is his personal accent...in india you can find so many accent for foreign languages because of their mother tongue influence......why are you trying to escapeby saying he is not indian he is south indian you dumb as****

    • @franciscoogura9392
      @franciscoogura9392 7 ปีที่แล้ว +1

      Subtitles would help a lot.

    • @mritunjaypandey8823
      @mritunjaypandey8823 7 ปีที่แล้ว +2

      south indian english.... north indian english is equally understandable as us or British english

    • @MaheshKumar-mf9rw
      @MaheshKumar-mf9rw 7 ปีที่แล้ว +2

      +Mritunjay Pandey Haven't ever heard Harsha Bhogle and Satya Nadella speaking. Accent will be different for different people. Its not like South Indians Have one Accent AND North Indians Have another Accent. Tell me which state you belong i will tell you how your Accent will be.

  • @ravindracharypalakonda460
    @ravindracharypalakonda460 9 ปีที่แล้ว

    In JVM, we have JIT compiler but you are saying JVM is like interpreter. What is the use of JIT compiler in JVM?

    • @pradeepchandra7045
      @pradeepchandra7045 9 ปีที่แล้ว +3

      +Ravindra Chary Palakonda
      jvm is a interpreter it reads line by line code and executes so it is time consuming inorder to speed up the processes we use jit compiler so execution time of the code is reduced

  • @YashNagayach
    @YashNagayach 5 ปีที่แล้ว +1

    If jre comes under jdk then why we need to install jre separately from jdk?

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  5 ปีที่แล้ว

      Hello Nagayach.
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28

    • @chandrashekargoud626
      @chandrashekargoud626 4 ปีที่แล้ว

      Who told you to install jre separately??

  • @mathipraneetha3465
    @mathipraneetha3465 5 ปีที่แล้ว +2

    Sir,what is meant by development tools,library classes

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  5 ปีที่แล้ว +1

      Hello Rose.
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28

  • @mdehsan5702
    @mdehsan5702 7 ปีที่แล้ว

    Sir please upload reflection video by Durga sir

  • @Shanvika0501
    @Shanvika0501 8 ปีที่แล้ว +1

    explanation is too Good!!

  • @akash2626.-
    @akash2626.- ปีที่แล้ว +2

    Intelligent person 🥰

  • @gayanjayalathbandara4604
    @gayanjayalathbandara4604 2 ปีที่แล้ว +1

    Thank you sir

  • @TheSumanpurohit
    @TheSumanpurohit 9 ปีที่แล้ว

    quite well explained...thanks

  • @punammhaiske7609
    @punammhaiske7609 3 ปีที่แล้ว +1

    Then why we install jdk &jre individually.

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  3 ปีที่แล้ว

      Hello Punam.
      Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28

  • @chinkurtz
    @chinkurtz 6 ปีที่แล้ว +3

    very good explanation.

    • @DurgaSoftwareSolutions
      @DurgaSoftwareSolutions  6 ปีที่แล้ว

      Hello Gyaan.
      Thanks for your valuable feedback.It will boost us to do new things. Please subscribe to get updates about new videos.
      You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link:
      th-cam.com/play/PLd3UqWTnYXOmx_J1774ukG_rvrpyWczm0.html
      You an see more Java videos following link:
      Java tutorial by durga sir
      th-cam.com/play/PLd3UqWTnYXOmx_J1774ukG_rvrpyWczm0.html
      Java 9 by durga sir
      th-cam.com/play/PLd3UqWTnYXOkvoHhlZx1vH4IMlWbPjdII.html
      Java 1.8 Version New Features by Durga sir
      th-cam.com/play/PLd3UqWTnYXOk0y_HFp2r1eMW_lhZ7yP4w.html&disable_polymer=true
      Adv Java JDBC Tutorial by Durga sir
      th-cam.com/play/PLd3UqWTnYXOniKfYRNY___weULTRd9Co0.html
      OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir
      th-cam.com/video/hXsPYDhEIuE/w-d-xo.html
      Core Java by NagoorBabu sir
      th-cam.com/play/PLd3UqWTnYXOl9j310zVSvbjenA53eRaWR.html
      Advenced Java by Nagoorbabu sir
      th-cam.com/play/PLd3UqWTnYXOlFGUEmzJlADK5cwzls4k5i.html
      CoreJava by Ratan
      th-cam.com/play/PLd3UqWTnYXOkIbQ-9MfOK4HOGo0Hdtuti.html
      Advanced Java jdbc by Ratan
      th-cam.com/play/PLd3UqWTnYXOlVCDK8tUIR6qT1l-EdjcEg.html&disable_polymer=true
      Advjava tutorials - JSP by Ratan
      th-cam.com/play/PLd3UqWTnYXOmcvuk4ExKSFRpL0HPbt6iQ.html
      Adv java servlets tutorial by ratan
      th-cam.com/play/PLd3UqWTnYXOk23J5gLUVYp_aSdeBXAuFT.html&disable_polymer=true
      Servlet and JSP Tutorial by anji reddy
      th-cam.com/play/PLd3UqWTnYXOmPeJbzLe3ziBT7fM79OfRI.html&disable_polymer=true
      Advanced Java Jdbc by Anjireddy
      th-cam.com/play/PLd3UqWTnYXOnt39kQhcsTBh65ToFgG_r2.html&disable_polymer=true
      Hibernate byAnjireddy
      th-cam.com/play/PLd3UqWTnYXOm7zFQpPsbRrQY8MZ9FI1qQ.html&disable_polymer=true
      Struts by Anjireddy
      th-cam.com/play/PLd3UqWTnYXOnr_x5ziRVTDSE1A9wR-kN6.html&disable_polymer=true
      Spring by Mr.AnjiReddy
      th-cam.com/play/PLd3UqWTnYXOmve9nOsCtjd2PqKvDr-QiF.html
      ADV JAVA by Naveen
      th-cam.com/play/PLd3UqWTnYXOnSmOj1E3yh3QxTJ_YHgRm8.html&disable_polymer=true
      Spring by Mr.Naveen
      th-cam.com/play/PLd3UqWTnYXOmpGjkPiaLZsVw6JYw18vMT.html
      Hibernate by Mr. Naveen
      th-cam.com/play/PLd3UqWTnYXOlbNZyVIwgX627xvB0EWnqJ.html
      Struts by Mr.Naveen
      th-cam.com/play/PLd3UqWTnYXOn7xetRSRuvaQyE-nyDqBew.html

  • @gallamohankrishna4062
    @gallamohankrishna4062 5 ปีที่แล้ว +1

    Good teaching

  • @RahulGupta-ly2uu
    @RahulGupta-ly2uu 7 ปีที่แล้ว +1

    sir ur telling that jvm is interpreter but sir when we compile .java file then we are going to compile whole file at once and create the respective class file and then we are going to run the whole program at once by using that class file
    if it is an interpreter then we should not bother about compiling .java file
    if we are compiling and if their is an error then it should execute the lines before that error occurred but in real time it is not behaving like that why sir??
    pz answer to me sir or anyone

    • @urvbu27sh864
      @urvbu27sh864 6 ปีที่แล้ว

      Rahul Gupta dear bro...
      JVM is neither compiler nor interpreter on a single but JVM contains jit compiler (just in time compiler) and interpreter both and both these components works simultaneously to give results from .java to .Class file....
      And later display the results..
      Hope u got ur facts cleared...

    • @johnpremkumar9552
      @johnpremkumar9552 6 ปีที่แล้ว

      I guess JVM interprets only the already compiled code by java compiler.

  • @suresh_j11
    @suresh_j11 ปีที่แล้ว +1

    Well explained

  • @ashitaagrawal3114
    @ashitaagrawal3114 9 ปีที่แล้ว +19

    no one can teach better than you

    • @mujammilshaik2162
      @mujammilshaik2162 6 ปีที่แล้ว

      Ashita Agrawal naresh it hari krishna teaches even much much much muchhhhhhhhhhh better than him

  • @manastrivedi8994
    @manastrivedi8994 7 ปีที่แล้ว

    Sir
    I have one doubt that jdk is internal or external and what's meaning of internal and external command