Master Recursion Like a Pro - Complete Step-by-Step Guide! | Tamil

Поделиться
HTML-код
  • Опубликовано: 19 янв 2025

Комментарии • 91

  • @jaya_bhuvanesh
    @jaya_bhuvanesh  19 дней назад +1

    Guys for those who have not joined in verified students group
    Please contact the below instagram id
    instagram.com/rashwanth_?igsh=MWJ3OHk2NTJ3NTBkMQ==
    He will do the needful👍

    • @barret3534
      @barret3534 18 дней назад

      What are the modes of payment, bro?
      Contacted this IG ID as well, no responses yet.

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад +1

      @barret3534 I will confirm everything in my next video reg payments please wait

    • @jayachandranvj41
      @jayachandranvj41 14 дней назад

      Bro... Can you provide an update on payment portal for working professionals

  • @prasanna248
    @prasanna248 15 дней назад +3

    Video starts 4:16

  • @GAARA-w3e
    @GAARA-w3e 19 дней назад +1

    Nalla puriyuthu bro ❤🔥

  • @senthamarai_kannan.
    @senthamarai_kannan. 19 дней назад +1

    Good one bro. I learned something new in day one of 2025 from you.

  • @SURESH_1928
    @SURESH_1928 19 дней назад +10

    Any way marana waiting thalaivare romba adi pattachu intha 3 months relatives side as well as parents side🥲

  • @jayanthsjr
    @jayanthsjr 19 дней назад

    Happy New Year, Waiting for this video 🙌🏻

  • @krish.s2000
    @krish.s2000 19 дней назад +1

    Happy New year Bro 🎉 and waiting for payment portal joined in verified Students group!

  • @999gaming-g9q
    @999gaming-g9q 19 дней назад +2

    Anna one doubt ... You are the right person to help me.. I learn the full stack development in nxtwave platform.... There are two option java full stack and MERN full stack which one can i chose.. You tell the depend upon you.. does not given that Like the answer please its anan one more doubt the fundamental are cover with python base to advance in fundamental curriculum

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +1

      If you want a quick job with more opportunities go for java backend

  • @keerthis4783
    @keerthis4783 19 дней назад +1

    Waiting for Jan 2🔥

  • @santhoshs7499
    @santhoshs7499 19 дней назад +1

    I cant find the cursor while pointingout somthing please highlight the touch

  • @-CA-JabastinA
    @-CA-JabastinA 19 дней назад

    public static void fun(int n) {
    // if(n>0) {
    // System.out.print( n+ " ");
    // fun(n-1); This block end up in a loop.
    // fun(n);
    // }
    if (n == 0) {
    return; // Base case: stop when n reaches 0
    }
    System.out.print(n + " "); // Print the current number
    fun(n - 1); // Recursive call to print the descending part
    if (n != 0) { // Avoid duplicate 1 in the middle
    System.out.print(n + " "); // Print the ascending part after recursion
    }
    }

  • @nandhinik04
    @nandhinik04 19 дней назад +2

    Bro, the process for all, other than students (like verifying them) starts only on jan 2, ryt?

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +1

      No student verification already started remaining process will start in 2 or 3 days

    • @nandhinik04
      @nandhinik04 19 дней назад

      @@jaya_bhuvanesh ok bro

  • @Sportgameww
    @Sportgameww 19 дней назад

    Happy new year🎇 bro.

  • @bahulyank.t7590
    @bahulyank.t7590 19 дней назад

    Happy new year 🎉🎉

  • @Hariharan-uy7ob
    @Hariharan-uy7ob 19 дней назад +1

    Eager to crack maang bro

  • @santhoshs7499
    @santhoshs7499 19 дней назад +2

    5:55 await podalana , it wont wait till the fuction completes

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад

      I just mentioned the sync flow
      Asynchronous totally a different topic lol

    • @chidambara_vignesh
      @chidambara_vignesh 19 дней назад

      I hope you are a JS guy. Even in js it works the same way for synchronous function. Try to run the below code in your console.
      function f2(){
      console.log("I'm at f2");
      }
      function f1(){
      console.log("Before f2");
      f2();
      console.log("after f2");
      }
      f1();
      await is needed only for async functions like where we do API call etc.. Hope this helps for you.

    • @சதீஷ்ச-ங3ய
      @சதீஷ்ச-ங3ய 19 дней назад

      Lol why you going more advance to asynchronous...he just saying synchronous function working

    • @santhoshs7499
      @santhoshs7499 18 дней назад

      ​@@chidambara_vignesh Im dot net guy, btw thank you

  • @girishsadvam2215
    @girishsadvam2215 19 дней назад

    Happy New Year bro

  • @Uzumakifelt264
    @Uzumakifelt264 18 дней назад +1

    Theres no link to join students group and im in the course uodates group
    How to contact you bro
    If theres no way to contact how can we trust you bro

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад

      In the course update group there is a link to join students group there we are doing verification for students
      And I hired a dedicated person to do this and I have mentioned his insta id in the pinned comment
      Until I onboard people into a proper platform it will be little hectic I agree but post that our ultimate focus should be learning

    • @Uzumakifelt264
      @Uzumakifelt264 18 дней назад

      @@jaya_bhuvanesh alright i'll see

  • @ravichandranrvb5318
    @ravichandranrvb5318 18 дней назад

    Hi Jaya,
    Can you explain how memory is managed in a recursive function?

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад

      I had already covered how function local variables takes space in stack and how each stack frame gets removed from memory in my dsa playlist same gets applied here
      Except for static and some special language specific variables

  • @chidambara_vignesh
    @chidambara_vignesh 15 дней назад

    Hi Bhuvanesh
    When can we expect registration for the course for working professionals?

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  15 дней назад +1

      sunday 6pm sharp

    • @chidambara_vignesh
      @chidambara_vignesh 15 дней назад

      I will be travelling that time brother. Please help me to get me a seat as I can able to access internet properly by Monday morning only. I’m bit serious about this course.

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  15 дней назад

      @@chidambara_vignesh dm me when you are free before 6pm

  • @RajeshL-z2q
    @RajeshL-z2q 19 дней назад +1

    waiting for jan 6..

  • @gowthamchandran6213
    @gowthamchandran6213 19 дней назад +1

    Is it possible to join working professional in your course?

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад

      Yes you can join please wait for my next video where I will explain promptly how to join and everything

    • @keerthis4783
      @keerthis4783 18 дней назад +1

      @@jaya_bhuvanesh Next video epo upload panuvinga tomorrow va ila Jan 3 ya .. prepare ah irukathan kekure😅

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад +1

      @keerthis4783 definitely not tmrw first let me onboard students properly and then I will say one confirmed date until then please focus on pre-requisites

    • @keerthis4783
      @keerthis4783 18 дней назад +1

      @@jaya_bhuvanesh okay👍

  • @dinesh406
    @dinesh406 19 дней назад

    Hi bro, Is this course useful for QA Automation Tester ? Or only for Developer ?

  • @chidambara_vignesh
    @chidambara_vignesh 19 дней назад +2

    Hi Bhuvanesh,
    Video is really informative and very good explanations as well. Any number^0=1 -> Ithukku neenga kudutha explanation I have never heard before. Looking forward to learn more from you. Hope I will get a seat. Fingers crossed.
    I'm not affordable to loose your working professional Batch1 seat. Epdiyachum seat kuduthrunga brother, humble request. I need to change my life in 2025 and it depends on your course.
    Thanks,
    CV

  • @999gaming-g9q
    @999gaming-g9q 19 дней назад +1

    Bro so so late bro sorry for that please help me to the I like to submit the students verification form I submitted now please check that bro humble request

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +1

      @@999gaming-g9q please contact the EO

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +1

      @999gaming-g9q he is a college 3rd year guy I hired !

    • @999gaming-g9q
      @999gaming-g9q 19 дней назад +1

      Anna now i just pass out in 2024 July

    • @999gaming-g9q
      @999gaming-g9q 19 дней назад +1

      Anna please i want to join the class.. I can't afford the working professional class i just passout in 2024 in tired 3 college please help me join the course this humble request.. I very very interested to join your course

    • @999gaming-g9q
      @999gaming-g9q 19 дней назад +1

      How to contact EO

  • @999gaming-g9q
    @999gaming-g9q 18 дней назад +3

    Anna one help please do not get irritate.. I was arrange amount my full effort did not make you ask for the course very very serious about the course anna i arrange 8k anna already take one loan in ujjivan Bank any change to help to join the class.. Please anna.. You can give me any work.. Place please anna.. I try best arrang the money.. Please helps me anna humble request anna..

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад

      @@999gaming-g9q i will delete this comment but ping me in insta I will reply you there 👍

  • @santhosh_rst2964
    @santhosh_rst2964 18 дней назад

    Bro I have BCA degree and 1 year experience in front and developer. Ennala High package pogamudiyuma.bcz engineering degree mostly hire pannuvanga high package la

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад +1

      Degree doesn't matter in many good product based companies especially if you are already experienced
      The moment you have 1 or 2 offer letters nothing can stop you to get high package

  • @karthikravi8932
    @karthikravi8932 19 дней назад

    Bro I am student , verification process ku passed out proof Kaalinga but inna sadhu start Panyala mana verification processla irukunu mention pannirukinga

  • @abcdabcd8605
    @abcdabcd8605 15 дней назад

    Does the payment for the course start at 6pm Sunday (05.01.2025)?

  • @diwakargd1543
    @diwakargd1543 17 дней назад

    Answer for homework:
    I got the output but not sure its right.
    class Multi {
    public static long multi(int n, int k) {
    if (k % 2 == 0) {
    if (k==2){
    return n*n;
    }
    return multi(n, k / 2) * multi(n, k / 2);
    }
    else {
    return multi(n, k - 1) * n;
    }
    }
    public static void main(String[] args) {
    System.out.println("Hello World!");
    long result = Multi.multi(2, 9);
    System.out.println("Result of multi(2, 7): " + result);
    }
    }

    • @abcdabcd8605
      @abcdabcd8605 День назад

      public class Main {
      public static long multi(int n, int k) {
      if (k == 0) return 1;
      if (k % 2 == 0) {
      if (k==2){
      return n*n;
      }
      return multi(n, k / 2) * multi(n, k / 2);
      }
      else {
      return multi(n, k - 1) * n;
      }
      }
      public static void main(String[] args) {
      long result = Main.multi(2, 1);
      System.out.println("Result of multi(2, 1): " + result);
      }
      }
      =======================
      =======================
      If we add the condition " if (k == 0) return 1; " it would be efficient when k == 0 (or) k == 1

  • @Abdul_Rahaman07
    @Abdul_Rahaman07 19 дней назад +1

    1st view♥

  • @Java_dsa_hope
    @Java_dsa_hope 19 дней назад +2

    Bro please answer me i am in the final year of my college but I fill the form last week can I join this course ❤ na money ready panniten, please ennayum Sethu konga

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +1

      Have you joined verified students channel ? If not ping me

    • @dhanushrock9375
      @dhanushrock9375 19 дней назад +1

      ​@@jaya_bhuvaneshHey bruh, I too registered the Google form last week but haven't recieved any email or call from ur side. I have again registered the Google form now.

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +1

      @dhanushrock9375 have you joined in telegram channel ?

    • @dhanushrock9375
      @dhanushrock9375 19 дней назад +1

      ​@@jaya_bhuvaneshYes bro.

    • @dhanushrock9375
      @dhanushrock9375 19 дней назад +1

      ​@@jaya_bhuvaneshI even messaged the executive coordinator. He told that he will check.

  • @Developerf5
    @Developerf5 19 дней назад +1

    Bro I have a doubt. Zoho la round 4 and round 5 la tamil la communicate pannalamaa?

    • @SURESH_1928
      @SURESH_1928 19 дней назад +1

      Bro zoho la language la problem illa skill matters for software development role😊

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  19 дней назад +2

      All rounds and in office as well tamil therinchurundhaa actually adhu oru advantage lol

  • @santhoshs7499
    @santhoshs7499 18 дней назад

    Do finance video

    • @jaya_bhuvanesh
      @jaya_bhuvanesh  18 дней назад +2

      Around june we will do a complete finance workshop

  • @pebin.s
    @pebin.s 19 дней назад

    Happy newyear bro