Functions / Methods in Java

  Рет қаралды 987,811

Kunal Kushwaha

Kunal Kushwaha

Күн бұрын

Пікірлер: 804
@KunalKushwaha
@KunalKushwaha 5 ай бұрын
DSA + interview preparation playlist: kzbin.info/aero/PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ
@vasutiwari4187
@vasutiwari4187 3 жыл бұрын
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
@ishchoubey
@ishchoubey 3 жыл бұрын
Ab toh sach bolde
@amritpaudel8204
@amritpaudel8204 2 жыл бұрын
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
@ashwathks784
@ashwathks784 2 жыл бұрын
Thank you
@abhinav2004
@abhinav2004 2 жыл бұрын
Thanks Amrit
@abhishekranjan1523
@abhishekranjan1523 2 жыл бұрын
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
@_zoro
@_zoro 2 жыл бұрын
thanks a lot
@vasanthnannuri8544
@vasanthnannuri8544 2 жыл бұрын
thanks dude
@anuragxsisodiya
@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
@arghasantra5420 Жыл бұрын
The best coding teacher i found in entire KZbin. You are just like beyond pro level ♥️
@Shayan_Ahmad07
@Shayan_Ahmad07 3 ай бұрын
Those who are studying first can also do it with these
@Syed_Shahzil
@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
@KunalKushwaha Жыл бұрын
It's my pleasure
@MuskanSoni-bg3ii
@MuskanSoni-bg3ii Жыл бұрын
@@KunalKushwaha sometimes i wonder how you such a gentleman , thank you for this series .
@suvojitghosh2774
@suvojitghosh2774 3 жыл бұрын
Man the explanation is so perfect . Concepts of shadowing scoping varargs were made so easy. Great work!! Looking forward to Arrays❤️
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
Glad you liked it!
@agyaani8060
@agyaani8060 3 жыл бұрын
Agreed💯
@NitinSharma-fh4ir
@NitinSharma-fh4ir 3 жыл бұрын
@@KunalKushwaha I love you
@nomadd749
@nomadd749 2 жыл бұрын
@@KunalKushwaha Please keep posting,such a great content.
@anubhavsingh9313
@anubhavsingh9313 2 жыл бұрын
@@KunalKushwaha I can't get the notes
@ravijain3413
@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...
@ajitpandey4265
@ajitpandey4265 3 жыл бұрын
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! :)
@Arjun8BPCracker
@Arjun8BPCracker 3 жыл бұрын
Nice observation
@vrashabhsontakke7282
@vrashabhsontakke7282 3 жыл бұрын
So, it means if we call fun(10, 20, 30) or fun(10), then the fun( int ....v) will be executed, right.
@shashankshekhar821
@shashankshekhar821 3 жыл бұрын
@@vrashabhsontakke7282 yes
@dynamokumar6028
@dynamokumar6028 3 жыл бұрын
Yes Bro Notice that.
@amitanandanojha3419
@amitanandanojha3419 3 жыл бұрын
nice thank u😁😁
@FreeAltSoftwareTutorials
@FreeAltSoftwareTutorials 2 жыл бұрын
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.
@samirajput9351
@samirajput9351 2 жыл бұрын
i have watched your previous videos and now I am giving likes to each of your video before even watching it Much respect
@KunalKushwaha
@KunalKushwaha 2 жыл бұрын
you are very kind
@narutodihargo
@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
@orupallikiran6362
@orupallikiran6362 9 ай бұрын
Thanks!This helped a lot for learning new things 😃 and the way of your teaching style is certainly fabulous❣️💥
@yoursyasuo5868
@yoursyasuo5868 3 жыл бұрын
This is literally amazing explanation. I am at the 2nd year and still learnt alot from this amazing lecture!
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
Glad you enjoyed it!
@Soulful_Insights0555
@Soulful_Insights0555 3 ай бұрын
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.
@shreysutariya2495
@shreysutariya2495 2 жыл бұрын
my whole java syllabus of college is done by here only thanks lot for making awesome videos
@KunalKushwaha
@KunalKushwaha 2 жыл бұрын
All the best
@Shayan_Ahmad07
@Shayan_Ahmad07 3 ай бұрын
Is that enough??
@sharannarsingi7578
@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
@omegajoint7339 Жыл бұрын
no need to check 'i' till the 'n'. you may only check untill the
@KoushikDas2005
@KoushikDas2005 Жыл бұрын
​@@omegajoint7339Kunal also explained this one in the beginning of the playlist
@sainaid
@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
@aamirreza4222 Жыл бұрын
Although I had already viewed this lecture, I came back to learn the concept of scoping more clearly
@rajattiwari6697
@rajattiwari6697 3 жыл бұрын
Handwritten notes are the best for revising at the last moment. Amazing video Kunal ,Lots and lots of learning from this amazing lecture.
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
So nice of you
@indukumari193
@indukumari193 3 жыл бұрын
Where is handwritten notes... Can u share the link
@herambjawanjal418
@herambjawanjal418 2 жыл бұрын
Hand written notes plzz🥺🥺
@tanvimehta120
@tanvimehta120 9 ай бұрын
Where is the notes?
@Robert_downy
@Robert_downy 3 ай бұрын
@@tanvimehta120 Notes are in his github link which is in discription of video
@thecoderguy_0001
@thecoderguy_0001 2 жыл бұрын
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.
@naveenscorp09
@naveenscorp09 3 жыл бұрын
Kunal you'll definitely grow in your career, even an experienced developer can't give this level of explanation for functions.Keep up
@eternalpanic1
@eternalpanic1 2 жыл бұрын
he did
@endlesscreativity423
@endlesscreativity423 Жыл бұрын
No, even a beginner would know that. I knew that stuff in my 1st semester
@indukumari193
@indukumari193 3 жыл бұрын
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
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
So nice of you
@sahilsood786
@sahilsood786 3 жыл бұрын
Couldn't have been explained in a better way. Keep growing and spreading your knowledge.
@owaisnazirdar3575
@owaisnazirdar3575 3 жыл бұрын
It is not one of the best It is THE BEST course of DSA . Love you bro ❤❤
@pepewr
@pepewr Жыл бұрын
No
@anonymous-ft8cb
@anonymous-ft8cb Жыл бұрын
its part of core java😂you thinking it ds LOL😂
@TxNet
@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
@adityashastry4410
@adityashastry4410 3 ай бұрын
thanks a lot
@Coding_Asmr_PraDev
@Coding_Asmr_PraDev 3 жыл бұрын
Your teaching is highly comprehensible
@CodewithAIYoutubeChannel
@CodewithAIYoutubeChannel Жыл бұрын
this is best method and function lecture for any one on the youtube.
@sarangvaliyaparambath810
@sarangvaliyaparambath810 3 жыл бұрын
Best in teaching. Clearing all doubts. Thankyou for this playlist.
@gourabbistu9426
@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.6987
@vasujhawar.6987 3 жыл бұрын
Kunal, The shadowing and VarArgs explanation was great. Appreciate af.
@tamannasharma1294
@tamannasharma1294 3 жыл бұрын
bhaiya kya clear kra h ye scoping ka concept ........🤩🤩
@ud3695
@ud3695 2 жыл бұрын
The channel should be named "Hey Kunal" Love what you are doing sir. May God bless you.
@FlutterProject-zb8jm
@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
@arnabkar3546 Жыл бұрын
Best course on DSA . Far superior than many paid ones.
@asmithaikya
@asmithaikya 3 жыл бұрын
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. ❤
@narc7885
@narc7885 3 жыл бұрын
Why can't you follow this series now? What are u so busy with
@hareeshanand4209
@hareeshanand4209 3 жыл бұрын
46:33 in java we dont have pointers....Me: Finally inner peace😂😂
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
Me too
@vrashabhsontakke7282
@vrashabhsontakke7282 3 жыл бұрын
@@KunalKushwaha lol Programming lang are made by and for lazy people.
@cabcost2036
@cabcost2036 3 жыл бұрын
😂😂😂😂😂😂😂😂😂😂
@priyankanidhi9048
@priyankanidhi9048 7 ай бұрын
Wow great explanation.i want to marry you 😊
@heelsadhna
@heelsadhna 6 ай бұрын
why u hate pointers?
@Mohit_Gupta24
@Mohit_Gupta24 2 жыл бұрын
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 ?
@aswinkumar4051
@aswinkumar4051 20 күн бұрын
Yeah... Same doubts here...i don't know why it is like that...
@parmarjaynareshbhai6610
@parmarjaynareshbhai6610 3 жыл бұрын
You are putting video in sunday also. Really appreciate your work. And you are amazing teacher
@PoojaVerma-tj7ls
@PoojaVerma-tj7ls 2 жыл бұрын
I was always struggling with this scoping thing, now its clear thanks kunal :)
@chandanan1993
@chandanan1993 Жыл бұрын
Thank you so much sir. Its very clear to understand each concept. Teaching is very nice. waiting for more videos like these.
@swagatswaroopparida2201
@swagatswaroopparida2201 2 жыл бұрын
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
@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❤
@satishgubge3800
@satishgubge3800 2 жыл бұрын
Your explanation is crystal clear . loved the style you teach the things so simply. You are doing great job ....
@deveshb793
@deveshb793 3 жыл бұрын
This is the best explanation on functions!🔥
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
Glad it was helpful!
@trusfrated_jungshook
@trusfrated_jungshook 3 жыл бұрын
@@KunalKushwaha Bro from where can I practice questions on each topic ??
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
@@trusfrated_jungshook assignment link is in github link in the video description
@trusfrated_jungshook
@trusfrated_jungshook 3 жыл бұрын
@@KunalKushwaha thankx bro ❤
@agyaani8060
@agyaani8060 3 жыл бұрын
💯💯
@pudipavankumar4952
@pudipavankumar4952 Жыл бұрын
One of the best channel for java+dsa series
@waroon.waroon2555
@waroon.waroon2555 Ай бұрын
no one explained about return type this clear!!!! thank you !!!!!!!!!!!!!!!!!!!!!!3
@neerajyadav2349
@neerajyadav2349 Жыл бұрын
Loved the clear and correct explanation
@vaidehiparashar7202
@vaidehiparashar7202 8 ай бұрын
literally, you the cutie. to the point explaination. thank youuu sir!
@mohsinkhan973
@mohsinkhan973 3 жыл бұрын
Just Amazing, This Course is better than paid courses.
@anshsambhariya
@anshsambhariya 3 жыл бұрын
This will be an awesome one too!! I am commenting before even watching!! Thanks Kunal!
@prakash36g
@prakash36g 2 жыл бұрын
I have never seen any tutorial with this much details and depth. Great Work Brother 👏
@KunalKushwaha
@KunalKushwaha 2 жыл бұрын
Glad you liked it
@adamgrewalsg8667
@adamgrewalsg8667 3 жыл бұрын
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
@piratekingrudy Ай бұрын
then why did it not change for swapping also? It is also doing an activities.
@jayanth01
@jayanth01 2 ай бұрын
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
@CodeforTonight
@CodeforTonight 3 жыл бұрын
Super se bhi upar hai ye DSA playlist..Kudos To Kunal
@JpChandYouTube
@JpChandYouTube 2 жыл бұрын
After watching more than 8 video...i found a better explanation in this video... love you bro
@avanishdubey6556
@avanishdubey6556 3 жыл бұрын
I don't know about shadowing and varargs before but now I know that very well.
@ramannaagre7938
@ramannaagre7938 2 жыл бұрын
There's some magic in the way you teach.
@manishagujjar2946
@manishagujjar2946 2 жыл бұрын
Finally I am satisfied with some lectures.thanks bhiya sooo much.
@somasaiteja2953
@somasaiteja2953 2 жыл бұрын
Thanks!
@aadisng
@aadisng Жыл бұрын
Best out of Best Brother Hats offf to you...
@shashwatsrivastava6899
@shashwatsrivastava6899 3 жыл бұрын
Thank you, Kunal for making videos even on weekends for us. :)
@deepbansal8710
@deepbansal8710 11 ай бұрын
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
@Murugagivesmelots Жыл бұрын
Such a great man. I have no words to express my gratitude 🙏🏻 Thanks a lot
@viveksingh973
@viveksingh973 2 жыл бұрын
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❤️
@dayabhusal7519
@dayabhusal7519 2 жыл бұрын
@@Learning_and_study12363it’s man 😂not mam
@Learning_and_study12363
@Learning_and_study12363 Жыл бұрын
@@dayabhusal7519 lagta hai chasme ka number badh gya mere😅 btw sorry for wrong comment😅
@mdmujahid8968
@mdmujahid8968 Жыл бұрын
Kunal is going clear all my doubts in DSA...loved it
@gouravpandey3513
@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
@sayakkundu6632
@sayakkundu6632 3 жыл бұрын
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.! :)
@KunalKushwaha
@KunalKushwaha 3 жыл бұрын
Keep it up
@venkateshveerala7590
@venkateshveerala7590 3 ай бұрын
It covers all things . Thank you kunal for the wonderful lecture
@thomasphilip8158
@thomasphilip8158 3 жыл бұрын
Thanks for the late-night video!
@aadisng
@aadisng Жыл бұрын
Bro you are nailing this course....Thanks a lottttttttt
@vasujhawar.6987
@vasujhawar.6987 3 жыл бұрын
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.
@tejassingh2971
@tejassingh2971 3 жыл бұрын
me too
@GaganSingh-zz9el
@GaganSingh-zz9el 2 жыл бұрын
@@tejassingh2971 i just completed my 1st year starting this course
@krishnaramprasadi9290
@krishnaramprasadi9290 Жыл бұрын
Love you bhaiya ....we feel proud that learning in this amazing way under you ❤❤❤
@pranavJha93
@pranavJha93 Жыл бұрын
Can I start learning Java without having mastery in C or C++?
@ayushsingh10399
@ayushsingh10399 3 жыл бұрын
Thanks brother you will going to create a new community with a student with best knowladge..
@mangeshsawant1229
@mangeshsawant1229 5 ай бұрын
Day 7 of learning DSA...✅ THANKYOU SO MUCH SIR..😇
@amruthaJagadale
@amruthaJagadale 3 ай бұрын
Where can I find answers for assignments on GitHub?
@tiasghosh2825
@tiasghosh2825 3 жыл бұрын
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.☺️☺️
@mrexplorer3433
@mrexplorer3433 3 жыл бұрын
The best bootcamp ever👌🏻 really beneficial for all of us!.
@Alwaysalearner123
@Alwaysalearner123 7 ай бұрын
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..2006
@Aryan..2006 4 ай бұрын
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
@choisanismine
@choisanismine 4 ай бұрын
i wasted both my 1st year and 2nd year..3rd year started and atleast now i hope to get serious!
@aryanparashar2407
@aryanparashar2407 2 жыл бұрын
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 👌👌👍👍🙏🙌
@anonymous1516
@anonymous1516 3 жыл бұрын
No one could have explained better than this
@santhoshj985
@santhoshj985 Жыл бұрын
Good teaching comes from a good heart
@garvsharma4845
@garvsharma4845 10 ай бұрын
i love the way you explain kunal sir.. i am your junior from college
@opakiriteibama1201
@opakiriteibama1201 Жыл бұрын
You are much man, you handled java the way it is really easy to understand the concepts
@praveengokuu
@praveengokuu 2 жыл бұрын
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
@jashan7247 Жыл бұрын
Have you been placed or not
@syedmahammadkhasim7741
@syedmahammadkhasim7741 6 ай бұрын
At 1:02:50 , sir you reinitialize the x value . Isn't it contradicts the concept of scoping
@HemanthKumar-xl2py
@HemanthKumar-xl2py 21 күн бұрын
We can't initialise again
@manibhushankumar8669
@manibhushankumar8669 3 жыл бұрын
Finest Video on this topic . Great Job Man Hatt's off to u
@AnkurKumar-wg3on
@AnkurKumar-wg3on Жыл бұрын
amazing lecture kunal, hands on programming and problem solving is the best.
@maheshtekkina511
@maheshtekkina511 Жыл бұрын
Very Good explanation never listened this type lecture in my carrier😊😊
@swapnilhajare7525
@swapnilhajare7525 6 ай бұрын
Brother, your explanation is very nice. You are teaching very perfectly. Thank you for this helpful playlist 👍👍
@anujbisht3907
@anujbisht3907 3 жыл бұрын
this is the best thing i have come across
@Raj-pi1pl
@Raj-pi1pl 3 жыл бұрын
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-sv6ou
@Omnisslayer01-sv6ou 2 ай бұрын
3:57 My inner voice screaming: USE WHILE LOOP!
@anudey8496
@anudey8496 2 жыл бұрын
you are amazing bro!! much appreatiated 👏👏👏👏
@deepakksingh1306
@deepakksingh1306 3 жыл бұрын
never learned programming this deeply
@deadpool_0077
@deadpool_0077 3 жыл бұрын
The 'opportunities' playlist was very helpful, please start it if possible for community classroom too .
@Srishan-e5q
@Srishan-e5q 5 ай бұрын
for my reference 1:20:02 - prime no 1:24:00 - armstrong no
@rajeshkamlekar8150
@rajeshkamlekar8150 3 жыл бұрын
Hey Kunal i appreciate your hardwork bro, try to complete the course as soon as possible,in 2 months.
@SyedYasmin-f7j
@SyedYasmin-f7j 2 ай бұрын
Excellent lecture and explanation🎉
@yashtripathi8496
@yashtripathi8496 3 жыл бұрын
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?
Introduction to Arrays and ArrayList in Java
1:45:53
Kunal Kushwaha
Рет қаралды 1,4 МЛН
Switch Statements + Nested Case in Java
26:11
Kunal Kushwaha
Рет қаралды 381 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Мясо вегана? 🧐 @Whatthefshow
01:01
История одного вокалиста
Рет қаралды 7 МЛН
JavaScript Functions Crash Course
1:36:54
freeCodeCamp.org
Рет қаралды 200 М.
BRAIN ROT | Why You Are Losing Control Of Your Brain?
17:40
Aevy TV
Рет қаралды 863 М.
7 Outside The Box Puzzles
12:16
MindYourDecisions
Рет қаралды 178 М.
OOP 1 | Introduction & Concepts - Classes, Objects, Constructors, Keywords
1:42:27
Strings and StringBuilder in Java
1:27:29
Kunal Kushwaha
Рет қаралды 529 М.
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 773 М.
God-Tier Developer Roadmap
16:42
Fireship
Рет қаралды 7 МЛН
10 years of coding in 13 minutes
13:28
Joma Tech
Рет қаралды 5 МЛН
Time and Space Complexity COMPLETE Tutorial - What is Big O?
2:28:24
Kunal Kushwaha
Рет қаралды 715 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН