If you would have name subclass as Parentclass and Parent as subclass that would have make more sense. Because subclass contains main method it should have been named as parent class. Otherwise you are brilliant at explaining concepts
@jai45354 жыл бұрын
Very simple and helpful.
@Mukeshotwani4 жыл бұрын
Thanks Jai
@omgutty52764 жыл бұрын
Beautifully explained, thanks guruji.
@Mukeshotwani4 жыл бұрын
Thank you Om 🙏
@AreebandAbdulbayes4 жыл бұрын
Mukesh - Nice lectures. Once we complete these java lectures, do we have your selenium lectures somewhere i.e POM, Automation framework like complete selenium coding sessions. Thanks
@Mukeshotwani4 жыл бұрын
Hi Muhammad, you can refer Below Series after Java Tutorials kzbin.info/aero/PL6flErFppaj2ArNxLyR4nQ4JV8qFc56-M kzbin.info/aero/PL6flErFppaj0WwNOMFeXPVlNCDuJyPYFi
@moumitabane4 жыл бұрын
Hi Mukesh, Nice informative video and very helpful. Are these concepts enough to learn selenium or we need more materials for java? Also can you share or link pdf material for these videos so that it s easier to refer later and also it would be helpful to crack interviews and we dont have to go through the videos again and again.
@iMadeThisThat4 жыл бұрын
Thanks for the video Mukesh! Could you please make a video explaining Java Enum concept? You will explain it the easy way :) please do so..!
@Mukeshotwani4 жыл бұрын
Sure Amit, very important topic and very easy as well. I will upload soon.
@durgaraoponnuru174 жыл бұрын
Hi Mukesh, i didn't understand 4th point in "Points to Remember" slide. Can you explain.
@Mukeshotwani4 жыл бұрын
Hi Durga, I have explained the same point with example in video.
@t-seriesmahesh92254 жыл бұрын
Please make oops concept in java and all concepts of java
@Mukeshotwani4 жыл бұрын
Yes @Mahesha I am working on it. Many videos coming soon.
@susheelmahobia34082 жыл бұрын
very very nice video.
@charlenemaeforio15454 жыл бұрын
Hi sir I just want to know this answer... Compare and contrast this and super keyword in Java?
@Mukeshotwani4 жыл бұрын
Hey Charlene, I have dedicated video on this keyword too. Once you watch that video you will have enough idea about the difference between them. kzbin.info/www/bejne/hWWbpWOEacudgsk
@charlenemaeforio15454 жыл бұрын
@@Mukeshotwani thankyou so much 😘😘
@Mukeshotwani4 жыл бұрын
@@charlenemaeforio1545 😇😀
@gauravpandav13272 жыл бұрын
Does super Keyword refers to parent class Object? & if so than Does it mean Parent object is Created implicitly while Creating Child class Object ? I am really getting confused . please Answer..
@shaiksameer27764 жыл бұрын
What if we don't have default constructors in both base and child class, but we have parameterized constructors in both base and child class... Then it will execute r8?
@abdulhameed-gv2cz4 жыл бұрын
Without default constructor in base class, java won't execute child class parameterised constructor. It will throw compile time exception.
@shaiksameer27764 жыл бұрын
@@abdulhameed-gv2cz in java we have implicitly constructor... But explicitly we are defining parameterized constructors in both base and child class... The question is we are not defining constructors with no arguments in both child and base class!