Functions / Methods in Java

Поділитися
Вставка
  • Опубліковано 10 січ 2025

КОМЕНТАРІ • 804

  • @KunalKushwaha
    @KunalKushwaha  5 місяців тому +22

    DSA + interview preparation playlist: ua-cam.com/play/PL9gnSGHSqcnr_DxHsP7AW9ftq0AtAyYqJ.html

  • @vasutiwari4187
    @vasutiwari4187 3 роки тому +166

    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

  • @amritpaudel8204
    @amritpaudel8204 2 роки тому +173

    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 роки тому +1

      Thank you

    • @abhinav2004
      @abhinav2004 2 роки тому

      Thanks Amrit

    • @abhishekranjan1523
      @abhishekranjan1523 2 роки тому +1

      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 Рік тому +11

    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 Рік тому +35

    The best coding teacher i found in entire UA-cam. You are just like beyond pro level ♥️

    • @Shayan_Ahmad07
      @Shayan_Ahmad07 3 місяці тому +1

      Those who are studying first can also do it with these

  • @Syed_Shahzil
    @Syed_Shahzil Рік тому +19

    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  Рік тому +13

      It's my pleasure

    • @MuskanSoni-bg3ii
      @MuskanSoni-bg3ii Рік тому +2

      @@KunalKushwaha sometimes i wonder how you such a gentleman , thank you for this series .

  • @suvojitghosh2774
    @suvojitghosh2774 3 роки тому +468

    Man the explanation is so perfect . Concepts of shadowing scoping varargs were made so easy. Great work!! Looking forward to Arrays❤️

  • @ravijain3413
    @ravijain3413 Рік тому +6

    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 роки тому +210

    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! :)

  • @FreeAltSoftwareTutorials
    @FreeAltSoftwareTutorials 2 роки тому +21

    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 роки тому +6

    i have watched your previous videos and now I am giving likes to each of your video before even watching it Much respect

  • @narutodihargo
    @narutodihargo Рік тому +4

    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 місяців тому +1

    Thanks!This helped a lot for learning new things 😃 and the way of your teaching style is certainly fabulous❣️💥

  • @yoursyasuo5868
    @yoursyasuo5868 3 роки тому +78

    This is literally amazing explanation. I am at the 2nd year and still learnt alot from this amazing lecture!

  • @Soulful_Insights0555
    @Soulful_Insights0555 3 місяці тому +2

    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 роки тому +26

    my whole java syllabus of college is done by here only
    thanks lot for making awesome videos

  • @sharannarsingi7578
    @sharannarsingi7578 Рік тому +2

    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 Рік тому +5

      no need to check 'i' till the 'n'. you may only check untill the

    • @KoushikDas2005
      @KoushikDas2005 Рік тому +1

      ​@@omegajoint7339Kunal also explained this one in the beginning of the playlist

  • @sainaid
    @sainaid Рік тому +5

    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 Рік тому +2

    Although I had already viewed this lecture, I came back to learn the concept of scoping more clearly

  • @rajattiwari6697
    @rajattiwari6697 3 роки тому +28

    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 роки тому +11

      So nice of you

    • @indukumari193
      @indukumari193 3 роки тому +4

      Where is handwritten notes... Can u share the link

    • @herambjawanjal418
      @herambjawanjal418 2 роки тому +1

      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 роки тому +6

    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 роки тому +21

    Kunal you'll definitely grow in your career, even an experienced developer can't give this level of explanation for functions.Keep up

  • @indukumari193
    @indukumari193 3 роки тому +11

    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

  • @sahilsood786
    @sahilsood786 3 роки тому +9

    Couldn't have been explained in a better way. Keep growing and spreading your knowledge.

  • @owaisnazirdar3575
    @owaisnazirdar3575 3 роки тому +63

    It is not one of the best It is THE BEST course of DSA . Love you bro ❤❤

    • @pepewr
      @pepewr Рік тому +2

      No

    • @anonymous-ft8cb
      @anonymous-ft8cb Рік тому +1

      its part of core java😂you thinking it ds LOL😂

  • @TxNet
    @TxNet Рік тому +4

    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

  • @Coding_Asmr_PraDev
    @Coding_Asmr_PraDev 3 роки тому +6

    Your teaching is highly comprehensible

  • @CodewithAIYoutubeChannel
    @CodewithAIYoutubeChannel Рік тому +1

    this is best method and function lecture for any one on the youtube.

  • @sarangvaliyaparambath810
    @sarangvaliyaparambath810 3 роки тому +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 роки тому +10

    Kunal, The shadowing and VarArgs explanation was great. Appreciate af.

  • @tamannasharma1294
    @tamannasharma1294 3 роки тому +1

    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 роки тому +27

    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 роки тому +139

    46:33 in java we dont have pointers....Me: Finally inner peace😂😂

    • @KunalKushwaha
      @KunalKushwaha  3 роки тому +86

      Me too

    • @vrashabhsontakke7282
      @vrashabhsontakke7282 3 роки тому +6

      @@KunalKushwaha lol Programming lang are made by and for lazy people.

    • @cabcost2036
      @cabcost2036 3 роки тому +3

      😂😂😂😂😂😂😂😂😂😂

    • @priyankanidhi9048
      @priyankanidhi9048 7 місяців тому +2

      Wow great explanation.i want to marry you 😊

    • @heelsadhna
      @heelsadhna 6 місяців тому

      why u hate pointers?

  • @Mohit_Gupta24
    @Mohit_Gupta24 2 роки тому +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 19 днів тому

      Yeah... Same doubts here...i don't know why it is like that...

  • @parmarjaynareshbhai6610
    @parmarjaynareshbhai6610 3 роки тому +1

    You are putting video in sunday also.
    Really appreciate your work.
    And you are amazing teacher

  • @PoojaVerma-tj7ls
    @PoojaVerma-tj7ls 2 роки тому +1

    I was always struggling with this scoping thing, now its clear thanks kunal :)

  • @chandanan1993
    @chandanan1993 Рік тому +1

    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 роки тому +12

    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 роки тому +1

    Your explanation is crystal clear . loved the style you teach the things so simply. You are doing great job ....

  • @deveshb793
    @deveshb793 3 роки тому +29

    This is the best explanation on functions!🔥

  • @waroon.waroon2555
    @waroon.waroon2555 Місяць тому

    no one explained about return type this clear!!!! thank you !!!!!!!!!!!!!!!!!!!!!!3

  • @pudipavankumar4952
    @pudipavankumar4952 Рік тому

    One of the best channel for java+dsa series

  • @neerajyadav2349
    @neerajyadav2349 Рік тому +1

    Loved the clear and correct explanation

  • @vaidehiparashar7202
    @vaidehiparashar7202 8 місяців тому +1

    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 роки тому +1

    This will be an awesome one too!! I am commenting before even watching!! Thanks Kunal!

  • @prakash36g
    @prakash36g 2 роки тому +17

    I have never seen any tutorial with this much details and depth. Great Work Brother 👏

  • @adamgrewalsg8667
    @adamgrewalsg8667 3 роки тому +8

    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 роки тому +1

    I don't know about shadowing and varargs before but now I know that very well.

  • @ramannaagre7938
    @ramannaagre7938 2 роки тому +1

    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 Рік тому +1

    Best out of Best Brother Hats offf to you...

  • @shashwatsrivastava6899
    @shashwatsrivastava6899 3 роки тому +4

    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 Рік тому +1

    Such a great man.
    I have no words to express my gratitude 🙏🏻
    Thanks a lot

  • @mdmujahid8968
    @mdmujahid8968 Рік тому

    Kunal is going clear all my doubts in DSA...loved it

  • @viveksingh973
    @viveksingh973 2 роки тому +12

    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 Рік тому

      @@Learning_and_study12363it’s man 😂not mam

    • @Learning_and_study12363
      @Learning_and_study12363 Рік тому +1

      @@dayabhusal7519 lagta hai chasme ka number badh gya mere😅
      btw sorry for wrong comment😅

  • @gouravpandey3513
    @gouravpandey3513 Рік тому +1

    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 роки тому +11

    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.! :)

  • @venkateshveerala7590
    @venkateshveerala7590 3 місяці тому

    It covers all things . Thank you kunal for the wonderful lecture

  • @thomasphilip8158
    @thomasphilip8158 3 роки тому +3

    Thanks for the late-night video!

  • @aadisng
    @aadisng Рік тому

    Bro you are nailing this course....Thanks a lottttttttt

  • @vasujhawar.6987
    @vasujhawar.6987 3 роки тому +14

    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.

  • @krishnaramprasadi9290
    @krishnaramprasadi9290 Рік тому +1

    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++?

  • @mangeshsawant1229
    @mangeshsawant1229 5 місяців тому +2

    Day 7 of learning DSA...✅
    THANKYOU SO MUCH SIR..😇

    • @amruthaJagadale
      @amruthaJagadale 3 місяці тому

      Where can I find answers for assignments on GitHub?

  • @ayushsingh10399
    @ayushsingh10399 3 роки тому

    Thanks brother you will going to create a new community with a student with best knowladge..

  • @tiasghosh2825
    @tiasghosh2825 3 роки тому +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 місяці тому +1

    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 роки тому +1

    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 👌👌👍👍🙏🙌

  • @garvsharma4845
    @garvsharma4845 10 місяців тому

    i love the way you explain kunal sir.. i am your junior from college

  • @anonymous1516
    @anonymous1516 3 роки тому +1

    No one could have explained better than this

  • @santhoshj985
    @santhoshj985 Рік тому

    Good teaching comes from a good heart

  • @opakiriteibama1201
    @opakiriteibama1201 Рік тому

    You are much man, you handled java the way it is really easy to understand the concepts

  • @DimensionalDriftYoru
    @DimensionalDriftYoru 2 роки тому +3

    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 5 місяців тому +3

    At 1:02:50 , sir you reinitialize the x value . Isn't it contradicts the concept of scoping

  • @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 місяці тому +1

    3:57 My inner voice screaming: USE WHILE LOOP!

  • @anudey8496
    @anudey8496 2 роки тому +1

    you are amazing bro!! much appreatiated 👏👏👏👏

  • @deepakksingh1306
    @deepakksingh1306 3 роки тому +1

    never learned programming this deeply

  • @deadpool_0077
    @deadpool_0077 3 роки тому +2

    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

  • @SyedYasmin-f7j
    @SyedYasmin-f7j 2 місяці тому

    Excellent lecture and explanation🎉

  • @yashtripathi8496
    @yashtripathi8496 3 роки тому +2

    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?

  • @rajeshkamlekar8150
    @rajeshkamlekar8150 3 роки тому +1

    Hey Kunal i appreciate your hardwork bro, try to complete the course as soon as possible,in 2 months.