I couldn't thank you enough, but i pray may god give you strength and power to complete this course and also do many things great in life. I believe that if this course goes the same way its going now it will change life of lakhs.Thanks for being a helping hand
@ishchoubey3 жыл бұрын
Ab toh sach bolde
@amritpaudel82042 жыл бұрын
To all the new comers : In 30:56 when Kunal says in Java there is no such thing as pass by reference he means that there is no any way by which we can pass the primitive data types as reference in java. For example in C++ we had & and * operators by which we could pass the memory address of any variable we want ( even primitive variables like int, char, float etc ) and we can always achieve pass by reference but in java there are no such & and * operators. But in java we do have certain reference variables like classes, arrays. Since they are already a reference variable passing them through function might look like a pass by reference but that is because the variable name already is a reference to data in heap memory. So DO NOT BE CONFUSED
@ashwathks7842 жыл бұрын
Thank you
@abhinav20042 жыл бұрын
Thanks Amrit
@abhishekranjan15232 жыл бұрын
in call by value example when he pass the primitive value to the function he tells that here we not change the value of the object we create the new object this is wrong and he didn't explain right
@_zoro2 жыл бұрын
thanks a lot
@vasanthnannuri85442 жыл бұрын
thanks dude
@anuragxsisodiya Жыл бұрын
1:22:46 At line no.24 we can also use return true instead of c*c>n because if above two conditons fails then c*c>n has to be true
@arghasantra5420 Жыл бұрын
The best coding teacher i found in entire KZbin. You are just like beyond pro level ♥️
@Shayan_Ahmad073 ай бұрын
Those who are studying first can also do it with these
@Syed_Shahzil Жыл бұрын
Best DSA series ever I would like to say. Content made just for the sole purpose of teaching people. Thank you Kunal for such great explanations. you are truly a great Teacher.
@KunalKushwaha Жыл бұрын
It's my pleasure
@MuskanSoni-bg3ii Жыл бұрын
@@KunalKushwaha sometimes i wonder how you such a gentleman , thank you for this series .
@suvojitghosh27743 жыл бұрын
Man the explanation is so perfect . Concepts of shadowing scoping varargs were made so easy. Great work!! Looking forward to Arrays❤️
@KunalKushwaha3 жыл бұрын
Glad you liked it!
@agyaani80603 жыл бұрын
Agreed💯
@NitinSharma-fh4ir3 жыл бұрын
@@KunalKushwaha I love you
@nomadd7492 жыл бұрын
@@KunalKushwaha Please keep posting,such a great content.
@anubhavsingh93132 жыл бұрын
@@KunalKushwaha I can't get the notes
@ravijain3413 Жыл бұрын
Very nice explanation, i am having more that 13 years of experience in java but still watching just to learn how you are teaching and explaining... very helpful for any new person who wants to understand java. Good job, much appreciated ... keep it up...as of now i have forwarded your chhanal link to more than 20 freshers... nice contribution towards community...
@ajitpandey42653 жыл бұрын
One more interesting observation about VarArgs: If you have 2 functions with the same name (i.e you are overloading a function) eg:- fun(int p,int q) and fun(int ...v) and if you call fun(10, 20) from the main function then function accepting the exact number of parameters( fun(int p, int q) in this case ) will be executed and VarArg function( fun(int ...v) in this case) will be ignored. hope it helps! :)
@Arjun8BPCracker3 жыл бұрын
Nice observation
@vrashabhsontakke72823 жыл бұрын
So, it means if we call fun(10, 20, 30) or fun(10), then the fun( int ....v) will be executed, right.
@shashankshekhar8213 жыл бұрын
@@vrashabhsontakke7282 yes
@dynamokumar60283 жыл бұрын
Yes Bro Notice that.
@amitanandanojha34193 жыл бұрын
nice thank u😁😁
@FreeAltSoftwareTutorials2 жыл бұрын
I just found the best way to understand scope. So think the outer variables as the king and the inner variables in a block or loop to be the common people. The king can visit the common peoples home at any time but common peoples can't visit the king usually. It's something I came up in my mind & thought would be helpful for you.
@samirajput93512 жыл бұрын
i have watched your previous videos and now I am giving likes to each of your video before even watching it Much respect
@KunalKushwaha2 жыл бұрын
you are very kind
@narutodihargo Жыл бұрын
Timestamps: 0:00 Introduction 1:58 Problem Statement 5:31 Methods 5:41 Syntax of a Method 6:40 🎯 Program : Sum of two numbers 9:11 🎯 Program : Greetings 11:18 Returning Values 14:31 Returning a String 17:42 Parameters (Integer Function) 20:36 Parameters (String Function) 25:03 🎯 Program : Swap two numbers 25:25 🎯 Program : Pass Value 29:39 Internal Working of Swapping Program 41:33 🎯 Program : Change Value 46:41 Scope 47:00 Method Scope 49:46 Block Scope 55:32 Loop Scope 59:44 Shadowing 1:06:53 Variable Arguments (Varargs) 1:12:07 Method Overloading 1:19:25 🎯 Questions 1:20:01 Q1 : Prime Number 1:23:52 Q2 : Check Armstrong Number 1:28:27 Q3 : Print All 3 Digit Armstrong Numbers 1:30:18 Outro
@orupallikiran63629 ай бұрын
Thanks!This helped a lot for learning new things 😃 and the way of your teaching style is certainly fabulous❣️💥
@yoursyasuo58683 жыл бұрын
This is literally amazing explanation. I am at the 2nd year and still learnt alot from this amazing lecture!
@KunalKushwaha3 жыл бұрын
Glad you enjoyed it!
@Soulful_Insights05553 ай бұрын
00:02 This video covers functions and methods in Java. 04:14 Understanding functions and methods in Java 13:25 Functions and methods in Java 17:28 Understanding arguments in Java methods 23:55 Functions and methods in Java are essential for coding 28:13 Understand passing by value in Java functions 35:21 Understanding functions and methods in Java 38:58 Understanding functions and methods in Java 46:58 Understanding functions in Java 51:05 Understanding methods in Java 57:57 Functions in Java are used within a specific scope. 1:01:09 Understanding object independence in Java 1:08:52 Functions in Java can have multiple arguments and different forms 1:12:43 Function overloading allows multiple functions with the same name but different parameters 1:19:57 Understand the Square Root Method in Java 1:23:01 Explaining Armstrong Numbers in Java 1:30:22 Encouraging viewers to subscribe Crafted by Merlin AI.
@shreysutariya24952 жыл бұрын
my whole java syllabus of college is done by here only thanks lot for making awesome videos
@KunalKushwaha2 жыл бұрын
All the best
@Shayan_Ahmad073 ай бұрын
Is that enough??
@sharannarsingi7578 Жыл бұрын
1:22:16 So for the prime number function, I am writing this code because it is less and easier to write : static void prime(int n) { boolean prime = true; for(int i = 2; i
@omegajoint7339 Жыл бұрын
no need to check 'i' till the 'n'. you may only check untill the
@KoushikDas2005 Жыл бұрын
@@omegajoint7339Kunal also explained this one in the beginning of the playlist
@sainaid Жыл бұрын
now you are my only hope to learn dsa in a much simpler way. your way of explanation is perfect and crystal clear. thank you so much for such amazing content. ❤
@aamirreza4222 Жыл бұрын
Although I had already viewed this lecture, I came back to learn the concept of scoping more clearly
@rajattiwari66973 жыл бұрын
Handwritten notes are the best for revising at the last moment. Amazing video Kunal ,Lots and lots of learning from this amazing lecture.
@KunalKushwaha3 жыл бұрын
So nice of you
@indukumari1933 жыл бұрын
Where is handwritten notes... Can u share the link
@herambjawanjal4182 жыл бұрын
Hand written notes plzz🥺🥺
@tanvimehta1209 ай бұрын
Where is the notes?
@Robert_downy3 ай бұрын
@@tanvimehta120 Notes are in his github link which is in discription of video
@thecoderguy_00012 жыл бұрын
For scoping to be simple , folks, global scope objects is accessed by other scopes, but not vice versa and, change in value in block scope may apply to global scope.
@naveenscorp093 жыл бұрын
Kunal you'll definitely grow in your career, even an experienced developer can't give this level of explanation for functions.Keep up
@eternalpanic12 жыл бұрын
he did
@endlesscreativity423 Жыл бұрын
No, even a beginner would know that. I knew that stuff in my 1st semester
@indukumari1933 жыл бұрын
U r right kunal there is no video in youTube Or in other platform for free like yours.. Definitely you spent more than 4-5 hrs to do such kind of video... Great work please cmplt the series... Thanks
@KunalKushwaha3 жыл бұрын
So nice of you
@sahilsood7863 жыл бұрын
Couldn't have been explained in a better way. Keep growing and spreading your knowledge.
@owaisnazirdar35753 жыл бұрын
It is not one of the best It is THE BEST course of DSA . Love you bro ❤❤
@pepewr Жыл бұрын
No
@anonymous-ft8cb Жыл бұрын
its part of core java😂you thinking it ds LOL😂
@TxNet Жыл бұрын
at 45:00 whosover is having doubt in change value read this: like in the video he has said that pass by value works on primitve datatypes like string, int char byte etc,whereas objects and stuffs like array which is not a primitive datatypes, its a reference variable(collection of ints or any data type that I declare) so that's why the value of arr[0] got changed since array itself was the reference.hope this might help
@adityashastry44103 ай бұрын
thanks a lot
@Coding_Asmr_PraDev3 жыл бұрын
Your teaching is highly comprehensible
@CodewithAIYoutubeChannel Жыл бұрын
this is best method and function lecture for any one on the youtube.
@sarangvaliyaparambath8103 жыл бұрын
Best in teaching. Clearing all doubts. Thankyou for this playlist.
@gourabbistu9426 Жыл бұрын
00:02 Functions in Java play a vital role and are important in various sectors 04:14 Functions / Methods in Java 13:25 Functions and methods in Java 17:28 Functions and methods in Java 23:55 Functions and methods in Java 28:13 Functions / Methods in Java - Summarized 35:21 Functions in Java allow you to define reusable blocks of code. 38:58 Functions in Java 46:58 Functions in Java provide a way to perform specific tasks. 51:05 The video discusses how to initialize and print variables in Java. 57:57 Functions / Methods in Java can be used outside the class. 1:01:13 Functions / Methods in Java 1:09:03 Functions/Methods in Java 1:12:50 Function overloading allows multiple functions with the same name but different parameters or return types. 1:20:07 Functions / Methods in Java 1:23:08 Functions / Methods in Java 1:30:23 Next video Crafted by Merlin AI.
@vasujhawar.69873 жыл бұрын
Kunal, The shadowing and VarArgs explanation was great. Appreciate af.
@tamannasharma12943 жыл бұрын
bhaiya kya clear kra h ye scoping ka concept ........🤩🤩
@ud36952 жыл бұрын
The channel should be named "Hey Kunal" Love what you are doing sir. May God bless you.
@FlutterProject-zb8jm Жыл бұрын
I've learned Python and Dart in the past, and this course is exceptional in quality and depth. I'm truly impressed and grateful for the in-depth content. Thank you, and may your work continue to benefit many more students. 💌
@arnabkar3546 Жыл бұрын
Best course on DSA . Far superior than many paid ones.
@asmithaikya3 жыл бұрын
Well bhaiya, currently I don't have time to watch these lectures but even then I make sure to leave a thumbs up to your every video coz we trust you with all our heart. And most importantly at the end me too will follow this series. ❤
@narc78853 жыл бұрын
Why can't you follow this series now? What are u so busy with
@hareeshanand42093 жыл бұрын
46:33 in java we dont have pointers....Me: Finally inner peace😂😂
@KunalKushwaha3 жыл бұрын
Me too
@vrashabhsontakke72823 жыл бұрын
@@KunalKushwaha lol Programming lang are made by and for lazy people.
@cabcost20363 жыл бұрын
😂😂😂😂😂😂😂😂😂😂
@priyankanidhi90487 ай бұрын
Wow great explanation.i want to marry you 😊
@heelsadhna6 ай бұрын
why u hate pointers?
@Mohit_Gupta242 жыл бұрын
At 1:22:14, prime number solution - do we really need to write -> return c * c > n at line number 24 or we can simply return true as code flow will reach on line 24 only when while boolean clause is false, thus c * c > n will be always true when flow reaches line 24. Thoughts ?
@aswinkumar405120 күн бұрын
Yeah... Same doubts here...i don't know why it is like that...
@parmarjaynareshbhai66103 жыл бұрын
You are putting video in sunday also. Really appreciate your work. And you are amazing teacher
@PoojaVerma-tj7ls2 жыл бұрын
I was always struggling with this scoping thing, now its clear thanks kunal :)
@chandanan1993 Жыл бұрын
Thank you so much sir. Its very clear to understand each concept. Teaching is very nice. waiting for more videos like these.
@swagatswaroopparida22012 жыл бұрын
Thanks for such great videos. I am in class 10th and wanted to learn Java . Explanations are so simple that I can understand easily.❤️❤️ Any tips for me?
@Kshitij-m5o Жыл бұрын
Best paylist for DSA thank you so much kunal I started this just few days ago. I was very worried as I was not getting concepts . thanks for this great playlist❤
@satishgubge38002 жыл бұрын
Your explanation is crystal clear . loved the style you teach the things so simply. You are doing great job ....
@deveshb7933 жыл бұрын
This is the best explanation on functions!🔥
@KunalKushwaha3 жыл бұрын
Glad it was helpful!
@trusfrated_jungshook3 жыл бұрын
@@KunalKushwaha Bro from where can I practice questions on each topic ??
@KunalKushwaha3 жыл бұрын
@@trusfrated_jungshook assignment link is in github link in the video description
@trusfrated_jungshook3 жыл бұрын
@@KunalKushwaha thankx bro ❤
@agyaani80603 жыл бұрын
💯💯
@pudipavankumar4952 Жыл бұрын
One of the best channel for java+dsa series
@waroon.waroon2555Ай бұрын
no one explained about return type this clear!!!! thank you !!!!!!!!!!!!!!!!!!!!!!3
@neerajyadav2349 Жыл бұрын
Loved the clear and correct explanation
@vaidehiparashar72028 ай бұрын
literally, you the cutie. to the point explaination. thank youuu sir!
@mohsinkhan9733 жыл бұрын
Just Amazing, This Course is better than paid courses.
@anshsambhariya3 жыл бұрын
This will be an awesome one too!! I am commenting before even watching!! Thanks Kunal!
@prakash36g2 жыл бұрын
I have never seen any tutorial with this much details and depth. Great Work Brother 👏
@KunalKushwaha2 жыл бұрын
Glad you liked it
@adamgrewalsg86673 жыл бұрын
in case anyone still confused about change value part, just remember methods do activities and NOT implementations....so in case of int array, the method is doing the activity of putting the value of 99 in 0 index ,,where as in case of string name , it is trying to implement the value,,,,thanks
@piratekingrudyАй бұрын
then why did it not change for swapping also? It is also doing an activities.
@jayanth012 ай бұрын
I have some doubts in the early minutes of this In the next few minutes it was all cleared Very much thanks for the clarity in the concepts
@CodeforTonight3 жыл бұрын
Super se bhi upar hai ye DSA playlist..Kudos To Kunal
@JpChandYouTube2 жыл бұрын
After watching more than 8 video...i found a better explanation in this video... love you bro
@avanishdubey65563 жыл бұрын
I don't know about shadowing and varargs before but now I know that very well.
@ramannaagre79382 жыл бұрын
There's some magic in the way you teach.
@manishagujjar29462 жыл бұрын
Finally I am satisfied with some lectures.thanks bhiya sooo much.
@somasaiteja29532 жыл бұрын
Thanks!
@aadisng Жыл бұрын
Best out of Best Brother Hats offf to you...
@shashwatsrivastava68993 жыл бұрын
Thank you, Kunal for making videos even on weekends for us. :)
@deepbansal871011 ай бұрын
Okay so, had to watch the Pass by value and pass by copy of the value of the reference part, to make it more clearer, but yes, u made it clear enough ! ❤❤❤❤
@Murugagivesmelots Жыл бұрын
Such a great man. I have no words to express my gratitude 🙏🏻 Thanks a lot
@viveksingh9732 жыл бұрын
I'm not from CS background but interested in coding so I attending your class since few days now I feel so comfortable in Java.. Thank you Man❤️
@dayabhusal75192 жыл бұрын
@@Learning_and_study12363it’s man 😂not mam
@Learning_and_study12363 Жыл бұрын
@@dayabhusal7519 lagta hai chasme ka number badh gya mere😅 btw sorry for wrong comment😅
@mdmujahid8968 Жыл бұрын
Kunal is going clear all my doubts in DSA...loved it
@gouravpandey3513 Жыл бұрын
I would like to correct Kunal sir, He somehow interpreted initialization and declaration as same but declaration is telling the java compiler what type of variable I want (which means datatype of the variable). initialization is storing value or referring to object (Note :::primitive data types stores in stack memory they do not refer particularly in java whereas python differs, referring datatype do refer to an object.) Edit:: however he explain it in 1:05:19
@sayakkundu66323 жыл бұрын
i will upload the answers to the assignmets given. i will try to solve all of them. i m also new into Java and if i could solve it, i will help others too.! :)
@KunalKushwaha3 жыл бұрын
Keep it up
@venkateshveerala75903 ай бұрын
It covers all things . Thank you kunal for the wonderful lecture
@thomasphilip81583 жыл бұрын
Thanks for the late-night video!
@aadisng Жыл бұрын
Bro you are nailing this course....Thanks a lottttttttt
@vasujhawar.69873 жыл бұрын
The mic is distracting, but its awesome either way. Keep up the good work, I am in final year CS major, and i am coping up to learn some good coding skills.
@tejassingh29713 жыл бұрын
me too
@GaganSingh-zz9el2 жыл бұрын
@@tejassingh2971 i just completed my 1st year starting this course
@krishnaramprasadi9290 Жыл бұрын
Love you bhaiya ....we feel proud that learning in this amazing way under you ❤❤❤
@pranavJha93 Жыл бұрын
Can I start learning Java without having mastery in C or C++?
@ayushsingh103993 жыл бұрын
Thanks brother you will going to create a new community with a student with best knowladge..
@mangeshsawant12295 ай бұрын
Day 7 of learning DSA...✅ THANKYOU SO MUCH SIR..😇
@amruthaJagadale3 ай бұрын
Where can I find answers for assignments on GitHub?
@tiasghosh28253 жыл бұрын
Hey Kunal ur all vedios are so amazing that I can't express. Ur every vedio link that pops out I immediately click on that. Thank u so much for ur hard work and consistency. But plss don't stress urself so much upload vedios at ur own time ur health is also important.☺️☺️
@mrexplorer34333 жыл бұрын
The best bootcamp ever👌🏻 really beneficial for all of us!.
@Alwaysalearner1237 ай бұрын
1.sum of 2 nos using void as return type 2.sum of 2 nos using int as return type 3.string as return type 4.passing arguments Swap 5.Scoping 6.Shadowing
@Aryan..20064 ай бұрын
Day 3 here am in 2nd year and i hope i will nail everythtng though i wasted 1st yr. The way u taught the concept of block scope i loved it man
@choisanismine4 ай бұрын
i wasted both my 1st year and 2nd year..3rd year started and atleast now i hope to get serious!
@aryanparashar24072 жыл бұрын
Wow the explanation is just so perfect i can surely say that ur the best best best programmer and a teacher is well ur just the BEST!!!! u just explained all these topics so easily that these are damn impactfull and easily understandable 👌👌👍👍🙏🙌
@anonymous15163 жыл бұрын
No one could have explained better than this
@santhoshj985 Жыл бұрын
Good teaching comes from a good heart
@garvsharma484510 ай бұрын
i love the way you explain kunal sir.. i am your junior from college
@opakiriteibama1201 Жыл бұрын
You are much man, you handled java the way it is really easy to understand the concepts
@praveengokuu2 жыл бұрын
Thank You So much Kunal for this Bootcamp!! Everything is Clearly Explained and Interestingly. I'm having my placements in the next month, so please try to cover all the syllabus asap! that is my Kind Request :)
@jashan7247 Жыл бұрын
Have you been placed or not
@syedmahammadkhasim77416 ай бұрын
At 1:02:50 , sir you reinitialize the x value . Isn't it contradicts the concept of scoping
@HemanthKumar-xl2py21 күн бұрын
We can't initialise again
@manibhushankumar86693 жыл бұрын
Finest Video on this topic . Great Job Man Hatt's off to u
@AnkurKumar-wg3on Жыл бұрын
amazing lecture kunal, hands on programming and problem solving is the best.
@maheshtekkina511 Жыл бұрын
Very Good explanation never listened this type lecture in my carrier😊😊
@swapnilhajare75256 ай бұрын
Brother, your explanation is very nice. You are teaching very perfectly. Thank you for this helpful playlist 👍👍
@anujbisht39073 жыл бұрын
this is the best thing i have come across
@Raj-pi1pl3 жыл бұрын
Numbers speaks .Power of kunal bhaiya is such that there is 0 Dislike . Bhaiya i cant resist any more plz upload 5-6 vids everyday .BTW thank you
@Omnisslayer01-sv6ou2 ай бұрын
3:57 My inner voice screaming: USE WHILE LOOP!
@anudey84962 жыл бұрын
you are amazing bro!! much appreatiated 👏👏👏👏
@deepakksingh13063 жыл бұрын
never learned programming this deeply
@deadpool_00773 жыл бұрын
The 'opportunities' playlist was very helpful, please start it if possible for community classroom too .
@Srishan-e5q5 ай бұрын
for my reference 1:20:02 - prime no 1:24:00 - armstrong no
@rajeshkamlekar81503 жыл бұрын
Hey Kunal i appreciate your hardwork bro, try to complete the course as soon as possible,in 2 months.
@SyedYasmin-f7j2 ай бұрын
Excellent lecture and explanation🎉
@yashtripathi84963 жыл бұрын
31:11 it should be - A copy of reference variable is passed ? then only "this is a copy of this " makes sense(31:26). Guys, am I correct?